diff --git a/DSL.md b/DSL.md
index 0fb79b39..00a11954 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.7.9/dsl?tab=doc)
+[package documentation](https://pkg.go.dev/goa.design/model@v1.9.3/dsl?tab=doc)
 
 ```Go
 // Design defines the architecture design containing the models and views.
diff --git a/README.md b/README.md
index a5f4fcfb..8e77109f 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.7.9/mdl?tab=doc) package
-[RunDSL](https://pkg.go.dev/goa.design/model@v1.7.9/mdl?tab=doc#RunDSL)
+The [mdl](https://pkg.go.dev/goa.design/model@v1.9.3/mdl?tab=doc) package
+[RunDSL](https://pkg.go.dev/goa.design/model@v1.9.3/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.7.9/stz?tab=doc) package
-[RunDSL](https://pkg.go.dev/goa.design/model@v1.7.9/stz?tab=doc#RunDSL)
+The [stz](https://pkg.go.dev/goa.design/model@v1.9.3/stz?tab=doc) package
+[RunDSL](https://pkg.go.dev/goa.design/model@v1.9.3/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.7.9/dsl?tab=doc) lists
+[documentation](https://pkg.go.dev/goa.design/model@v1.9.3/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 e62bd708..ddf53c5d 100644
--- a/pkg/version.go
+++ b/pkg/version.go
@@ -8,9 +8,9 @@ const (
 	// Major version number
 	Major = 1
 	// Minor version number
-	Minor = 7
+	Minor = 9
 	// Build number
-	Build = 9
+	Build = 3
 	// Suffix - set to empty string in release tag commits.
 	Suffix = ""
 )