From a597872cf747f0598a7bd92e69c32c88a82bb5d0 Mon Sep 17 00:00:00 2001 From: Raphael Simon Date: Thu, 21 Sep 2023 21:32:38 -0700 Subject: [PATCH] Release v3.13.1 --- README.md | 6 +++--- pkg/version.go | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 9f131a245e..f22459399c 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@

Design First!

Release - Go Doc + Go Doc GitHub Action: Build Go Report Card Software License @@ -77,7 +77,7 @@ invoking the client code. go install goa.design/goa/v3/cmd/goa@v3 ``` -Current Release: `v3.13.0` +Current Release: `v3.13.1` # Getting Started @@ -343,7 +343,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.13.0/dsl?tab=doc) +The [DSL Go Doc](https://pkg.go.dev/goa.design/goa/v3@v3.13.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 beca2ca9fa..af13999f34 100644 --- a/pkg/version.go +++ b/pkg/version.go @@ -12,7 +12,7 @@ const ( // Minor version number Minor = 13 // Build number - Build = 0 + Build = 1 // Suffix - set to empty string in release tag commits. Suffix = "" )