From 0a56347ef2e41d9bd193eea68c9c54ed9d0ea78b Mon Sep 17 00:00:00 2001 From: Raphael Simon Date: Sat, 9 Mar 2024 17:59:25 -0800 Subject: [PATCH] Release v3.15.1 --- README.md | 6 +++--- pkg/version.go | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 6b3c0f43cf..667b10035e 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.15.0` +Current Release: `v3.15.1` # 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.15.0/dsl?tab=doc) +The [DSL Go Doc](https://pkg.go.dev/goa.design/goa/v3@v3.15.1/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 701b7527bc..df4effd342 100644 --- a/pkg/version.go +++ b/pkg/version.go @@ -12,7 +12,7 @@ const ( // Minor version number Minor = 15 // Build number - Build = 0 + Build = 1 // Suffix - set to empty string in release tag commits. Suffix = "" )