From 89c7ad9324ef2893adb5c22dd5de690dc1e95938 Mon Sep 17 00:00:00 2001 From: Raphael Simon Date: Thu, 9 May 2024 14:28:22 -0700 Subject: [PATCH] Release v1.9.5 --- DSL.md | 2 +- README.md | 10 +++++----- pkg/version.go | 2 +- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/DSL.md b/DSL.md index caaf5c9a..82abc3dc 100644 --- a/DSL.md +++ b/DSL.md @@ -3,7 +3,7 @@ The code snippet below describes the entire syntax of the DSL. The complete reference can be found in the `dsl` -[package documentation](https://pkg.go.dev/goa.design/model@v1.9.4/dsl?tab=doc) +[package documentation](https://pkg.go.dev/goa.design/model@v1.9.5/dsl?tab=doc) ```Go // Design defines the architecture design containing the models and views. diff --git a/README.md b/README.md index f6c97065..4f3404df 100644 --- a/README.md +++ b/README.md @@ -212,13 +212,13 @@ in this repo. ### Using Model as a library -The [mdl](https://pkg.go.dev/goa.design/model@v1.9.4/mdl?tab=doc) package -[RunDSL](https://pkg.go.dev/goa.design/model@v1.9.4/mdl?tab=doc#RunDSL) +The [mdl](https://pkg.go.dev/goa.design/model@v1.9.5/mdl?tab=doc) package +[RunDSL](https://pkg.go.dev/goa.design/model@v1.9.5/mdl?tab=doc#RunDSL) method runs the DSL and produces data structures that contain all the information needed to render the views it defines. -The [stz](https://pkg.go.dev/goa.design/model@v1.9.4/stz?tab=doc) package -[RunDSL](https://pkg.go.dev/goa.design/model@v1.9.4/stz?tab=doc#RunDSL) +The [stz](https://pkg.go.dev/goa.design/model@v1.9.5/stz?tab=doc) package +[RunDSL](https://pkg.go.dev/goa.design/model@v1.9.5/stz?tab=doc#RunDSL) method runs the DSL and produces a data structure that can be serialized into JSON and uploaded to the [Structurizr service](https://structurizr.com). @@ -347,7 +347,7 @@ view that is scoped to a parent element. ### Resources The DSL package -[documentation](https://pkg.go.dev/goa.design/model@v1.9.4/dsl?tab=doc) lists +[documentation](https://pkg.go.dev/goa.design/model@v1.9.5/dsl?tab=doc) lists all the DSL keywords and their usage. The file [DSL.md](https://github.com/goadesign/model/blob/master/DSL.md) diff --git a/pkg/version.go b/pkg/version.go index ead248fd..7ef335f3 100644 --- a/pkg/version.go +++ b/pkg/version.go @@ -10,7 +10,7 @@ const ( // Minor version number Minor = 9 // Build number - Build = 4 + Build = 5 // Suffix - set to empty string in release tag commits. Suffix = "" )