From 1b21c5a7a87c188cd8afe858992b341360042e9f Mon Sep 17 00:00:00 2001 From: Raphael Simon Date: Mon, 8 Jul 2024 15:51:56 -0700 Subject: [PATCH] Release v3.17.2 --- README.md | 6 +++--- pkg/version.go | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index eb9153be33..f56a68a995 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@

Design First!

Release - Go Doc + Go Doc GitHub Action: Test Go Report Card Software License @@ -136,7 +136,7 @@ invoking the client code. go install goa.design/goa/v3/cmd/goa@v3 ``` -Current Release: `v3.17.1` +Current Release: `v3.17.2` # Getting Started @@ -445,7 +445,7 @@ In particular the page explains how to leverage the generated code to implement an HTTP or gRPC service. -The [DSL Go Doc](https://pkg.go.dev/goa.design/goa/v3@v3.17.1/dsl?tab=doc) +The [DSL Go Doc](https://pkg.go.dev/goa.design/goa/v3@v3.17.2/dsl?tab=doc) contains a fully documented reference of all the DSL functions. ## Instrumentation and System Example diff --git a/pkg/version.go b/pkg/version.go index e5c7c283b7..7eaf60e3bd 100644 --- a/pkg/version.go +++ b/pkg/version.go @@ -12,7 +12,7 @@ const ( // Minor version number Minor = 17 // Build number - Build = 1 + Build = 2 // Suffix - set to empty string in release tag commits. Suffix = "" )