diff --git a/README.md b/README.md index f8c79277a1..563873ce1c 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 @@ -77,7 +77,7 @@ invoking the client code. go install goa.design/goa/v3/cmd/goa@v3 ``` -Current Release: `v3.13.1` +Current Release: `v3.13.2` # 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.1/dsl?tab=doc) +The [DSL Go Doc](https://pkg.go.dev/goa.design/goa/v3@v3.13.2/dsl?tab=doc) contains a fully documented reference of all the DSL functions. ## Instrumentation and System Example diff --git a/go.sum b/go.sum index 4230ecff57..e4b13fe2fe 100644 --- a/go.sum +++ b/go.sum @@ -74,8 +74,6 @@ golang.org/x/text v0.13.0/go.mod h1:TvPlkZtksWOMsz7fbANvkp4WM8x/WCo/om8BMLbz+aE= golang.org/x/tools v0.13.0 h1:Iey4qkscZuv0VvIt8E0neZjtPVQFSc870HQ448QgEmQ= golang.org/x/tools v0.13.0/go.mod h1:HvlwmtVNQAhOuCjW7xxvovg8wbNq7LwfXh/k7wXUl58= golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= -google.golang.org/genproto/googleapis/rpc v0.0.0-20230711160842-782d3b101e98 h1:bVf09lpb+OJbByTj913DRJioFFAjf/ZGxEz7MajTp2U= -google.golang.org/genproto/googleapis/rpc v0.0.0-20230711160842-782d3b101e98/go.mod h1:TUfxEVdsvPg18p6AslUXFoLdpED4oBnGwyqk3dV1XzM= google.golang.org/genproto/googleapis/rpc v0.0.0-20230920204549-e6e6cdab5c13 h1:N3bU/SQDCDyD6R528GJ/PwW9KjYcJA3dgyH+MovAkIM= google.golang.org/genproto/googleapis/rpc v0.0.0-20230920204549-e6e6cdab5c13/go.mod h1:KSqppvjFjtoCI+KGd4PELB0qLNxdJHRGqRI09mB6pQA= google.golang.org/grpc v1.58.2 h1:SXUpjxeVF3FKrTYQI4f4KvbGD5u2xccdYdurwowix5I= diff --git a/pkg/version.go b/pkg/version.go index af13999f34..0b4f2b53c1 100644 --- a/pkg/version.go +++ b/pkg/version.go @@ -12,7 +12,7 @@ const ( // Minor version number Minor = 13 // Build number - Build = 1 + Build = 2 // Suffix - set to empty string in release tag commits. Suffix = "" )