Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion DSL.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.16.7/dsl?tab=doc)
[package documentation](https://pkg.go.dev/goa.design/model@v1.16.8/dsl?tab=doc)

```Go
// Design defines the architecture design containing the models and views.
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
#
MAJOR=1
MINOR=16
BUILD=7
BUILD=8

GO_FILES=$(shell find . -path './cmd/mdl/webapp/node_modules' -prune -o -type f -name '*.go' -print)
GO_DIRS=$(shell go list -f '{{.Dir}}' ./... | grep -v '/cmd/mdl/webapp/node_modules/')
Expand Down
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ under the current path. For example:
```bash
mdl serve goa.design/model/examples/basic/model -dir gen
Watching: /home/raphael/go/src/goa.design/model/examples/basic/model
mdl v1.16.7, editor started. Open http://localhost:8080 in your browser.
mdl v1.16.8, editor started. Open http://localhost:8080 in your browser.
```

Modifying and saving the DSL while the editor is running causes it to
Expand Down Expand Up @@ -244,13 +244,13 @@ in this repo.

### Using Model as a library

The [mdl](https://pkg.go.dev/goa.design/model@v1.16.7/mdl?tab=doc) package
[RunDSL](https://pkg.go.dev/goa.design/model@v1.16.7/mdl?tab=doc#RunDSL)
The [mdl](https://pkg.go.dev/goa.design/model@v1.16.8/mdl?tab=doc) package
[RunDSL](https://pkg.go.dev/goa.design/model@v1.16.8/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.16.7/stz?tab=doc) package
[RunDSL](https://pkg.go.dev/goa.design/model@v1.16.7/stz?tab=doc#RunDSL)
The [stz](https://pkg.go.dev/goa.design/model@v1.16.8/stz?tab=doc) package
[RunDSL](https://pkg.go.dev/goa.design/model@v1.16.8/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).

Expand Down Expand Up @@ -379,7 +379,7 @@ view that is scoped to a parent element.
### Resources

The DSL package
[documentation](https://pkg.go.dev/goa.design/model@v1.16.7/dsl?tab=doc) lists
[documentation](https://pkg.go.dev/goa.design/model@v1.16.8/dsl?tab=doc) lists
all the DSL keywords and their usage.

The file [DSL.md](https://github.com/goadesign/model/blob/master/DSL.md)
Expand Down
2 changes: 1 addition & 1 deletion pkg/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ const (
// Minor version number
Minor = 16
// Build number
Build = 7
Build = 8
// Suffix - set to empty string in release tag commits.
Suffix = ""
)
Expand Down
Loading