diff --git a/README.md b/README.md index 3dfd560ac9..9f131a245e 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.12.4` +Current Release: `v3.13.0` # 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.12.4/dsl?tab=doc) +The [DSL Go Doc](https://pkg.go.dev/goa.design/goa/v3@v3.13.0/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 62c11cc655..beca2ca9fa 100644 --- a/pkg/version.go +++ b/pkg/version.go @@ -10,9 +10,9 @@ const ( // Major version number Major = 3 // Minor version number - Minor = 12 + Minor = 13 // Build number - Build = 4 + Build = 0 // Suffix - set to empty string in release tag commits. Suffix = "" )