From 7e7f491429da64e886bd83736a48bfb99062c9f5 Mon Sep 17 00:00:00 2001 From: Raphael Simon Date: Sat, 18 May 2024 15:30:44 -0700 Subject: [PATCH] Release v3.16.2 --- README.md | 6 +++--- pkg/version.go | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 8fc3308dd6..c64d91282c 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 @@ -118,7 +118,7 @@ invoking the client code. go install goa.design/goa/v3/cmd/goa@v3 ``` -Current Release: `v3.16.1` +Current Release: `v3.16.2` # Getting Started @@ -427,7 +427,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.16.1/dsl?tab=doc) +The [DSL Go Doc](https://pkg.go.dev/goa.design/goa/v3@v3.16.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 d3a2e54de9..07db700bc6 100644 --- a/pkg/version.go +++ b/pkg/version.go @@ -12,7 +12,7 @@ const ( // Minor version number Minor = 16 // Build number - Build = 1 + Build = 2 // Suffix - set to empty string in release tag commits. Suffix = "" )