Skip to content

Commit 2461d2e

Browse files
committed
Release v1.7.6
1 parent fc2e002 commit 2461d2e

3 files changed

Lines changed: 9 additions & 9 deletions

File tree

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.7.5/dsl?tab=doc)
6+
[package documentation](https://pkg.go.dev/goa.design/model@v1.7.6/dsl?tab=doc)
77

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

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
# Model
22

33
[![Build](https://github.com/goadesign/model/workflows/CI/badge.svg)](https://github.com/goadesign/model/actions?query=workflow%3ACI)
4-
![Version](https://img.shields.io/badge/Version-v1.7.5-blue.svg)
4+
![Version](https://img.shields.io/badge/Version-v1.7.6-blue.svg)
55
![Go version](https://img.shields.io/github/go-mod/go-version/gomods/athens.svg)
6-
[![DSL Reference](https://img.shields.io/badge/Doc-DSL-orange)](https://pkg.go.dev/goa.design/model@v1.7.5/dsl?tab=doc)
6+
[![DSL Reference](https://img.shields.io/badge/Doc-DSL-orange)](https://pkg.go.dev/goa.design/model@v1.7.6/dsl?tab=doc)
77
[![Go Packages](https://img.shields.io/badge/Doc-packages-orange)](https://pkg.go.dev/goa.design/model)
88

99
## Overview
@@ -201,13 +201,13 @@ in this repo.
201201

202202
### Using Model as a library
203203

204-
The [mdl](https://pkg.go.dev/goa.design/model@v1.7.5/mdl?tab=doc) package
205-
[RunDSL](https://pkg.go.dev/goa.design/model@v1.7.5/mdl?tab=doc#RunDSL)
204+
The [mdl](https://pkg.go.dev/goa.design/model@v1.7.6/mdl?tab=doc) package
205+
[RunDSL](https://pkg.go.dev/goa.design/model@v1.7.6/mdl?tab=doc#RunDSL)
206206
method runs the DSL and produces data structures that contain all the
207207
information needed to render the views it defines.
208208

209-
The [stz](https://pkg.go.dev/goa.design/model@v1.7.5/stz?tab=doc) package
210-
[RunDSL](https://pkg.go.dev/goa.design/model@v1.7.5/stz?tab=doc#RunDSL)
209+
The [stz](https://pkg.go.dev/goa.design/model@v1.7.6/stz?tab=doc) package
210+
[RunDSL](https://pkg.go.dev/goa.design/model@v1.7.6/stz?tab=doc#RunDSL)
211211
method runs the DSL and produces a data structure that can be serialized into
212212
JSON and uploaded to the [Structurizr service](https://structurizr.com).
213213

@@ -336,7 +336,7 @@ view that is scoped to a parent element.
336336
### Resources
337337

338338
The DSL package
339-
[documentation](https://pkg.go.dev/goa.design/model@v1.7.5/dsl?tab=doc) lists
339+
[documentation](https://pkg.go.dev/goa.design/model@v1.7.6/dsl?tab=doc) lists
340340
all the DSL keywords and their usage.
341341

342342
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
@@ -10,7 +10,7 @@ const (
1010
// Minor version number
1111
Minor = 7
1212
// Build number
13-
Build = 5
13+
Build = 6
1414
// Suffix - set to empty string in release tag commits.
1515
Suffix = ""
1616
)

0 commit comments

Comments
 (0)