From 4c7208444596034b79bc4ca5c5385fe807f8c9fa Mon Sep 17 00:00:00 2001 From: Raphael Simon Date: Tue, 10 Sep 2024 11:08:59 -0700 Subject: [PATCH] Release v3.19.0 --- README.md | 6 +++--- pkg/version.go | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index f6aafda3e8..a46c1cefb1 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 @@ -136,7 +136,7 @@ invoking the client code. go install goa.design/goa/v3/cmd/goa@v3 ``` -Current Release: `v3.18.2` +Current Release: `v3.19.0` # Getting Started @@ -445,7 +445,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.18.2/dsl?tab=doc) +The [DSL Go Doc](https://pkg.go.dev/goa.design/goa/v3@v3.19.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 fbc21c503d..688823a586 100644 --- a/pkg/version.go +++ b/pkg/version.go @@ -10,9 +10,9 @@ const ( // Major version number Major = 3 // Minor version number - Minor = 18 + Minor = 19 // Build number - Build = 2 + Build = 0 // Suffix - set to empty string in release tag commits. Suffix = "" )