Skip to content

Commit f7f3645

Browse files
committed
Release v1.13.0
1 parent e0a0ffc commit f7f3645

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

DSL.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
The code snippet below describes the entire syntax of the DSL. The complete
55
reference can be found in the `dsl`
6-
[package documentation](https://pkg.go.dev/goa.design/model@v1.12.0/dsl?tab=doc)
6+
[package documentation](https://pkg.go.dev/goa.design/model@v1.13.0/dsl?tab=doc)
77

88
```Go
99
// Design defines the architecture design containing the models and views.

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ under the current path. For example:
146146
```bash
147147
mdl serve goa.design/model/examples/basic/model -dir gen
148148
Watching: /home/raphael/go/src/goa.design/model/examples/basic/model
149-
mdl v1.12.0, editor started. Open http://localhost:8080 in your browser.
149+
mdl v1.13.0, editor started. Open http://localhost:8080 in your browser.
150150
```
151151

152152
Modifying and saving the DSL while the editor is running causes it to
@@ -228,13 +228,13 @@ in this repo.
228228

229229
### Using Model as a library
230230

231-
The [mdl](https://pkg.go.dev/goa.design/model@v1.12.0/mdl?tab=doc) package
232-
[RunDSL](https://pkg.go.dev/goa.design/model@v1.12.0/mdl?tab=doc#RunDSL)
231+
The [mdl](https://pkg.go.dev/goa.design/model@v1.13.0/mdl?tab=doc) package
232+
[RunDSL](https://pkg.go.dev/goa.design/model@v1.13.0/mdl?tab=doc#RunDSL)
233233
method runs the DSL and produces data structures that contain all the
234234
information needed to render the views it defines.
235235

236-
The [stz](https://pkg.go.dev/goa.design/model@v1.12.0/stz?tab=doc) package
237-
[RunDSL](https://pkg.go.dev/goa.design/model@v1.12.0/stz?tab=doc#RunDSL)
236+
The [stz](https://pkg.go.dev/goa.design/model@v1.13.0/stz?tab=doc) package
237+
[RunDSL](https://pkg.go.dev/goa.design/model@v1.13.0/stz?tab=doc#RunDSL)
238238
method runs the DSL and produces a data structure that can be serialized into
239239
JSON and uploaded to the [Structurizr service](https://structurizr.com).
240240

@@ -363,7 +363,7 @@ view that is scoped to a parent element.
363363
### Resources
364364

365365
The DSL package
366-
[documentation](https://pkg.go.dev/goa.design/model@v1.12.0/dsl?tab=doc) lists
366+
[documentation](https://pkg.go.dev/goa.design/model@v1.13.0/dsl?tab=doc) lists
367367
all the DSL keywords and their usage.
368368

369369
The file [DSL.md](https://github.com/goadesign/model/blob/master/DSL.md)

pkg/version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ const (
88
// Major version number
99
Major = 1
1010
// Minor version number
11-
Minor = 12
11+
Minor = 13
1212
// Build number
1313
Build = 0
1414
// Suffix - set to empty string in release tag commits.

0 commit comments

Comments
 (0)