diff --git a/cucumber-expressions/CHANGELOG.md b/cucumber-expressions/CHANGELOG.md index 046c954fd4..bcb3e7dbd6 100644 --- a/cucumber-expressions/CHANGELOG.md +++ b/cucumber-expressions/CHANGELOG.md @@ -11,6 +11,9 @@ and this project adheres to [Semantic Versioning](http://semver.org/). ### Changed +* [Go] Move module paths to point to monorepo + ([#1550](https://github.com/cucumber/common/issues/1550)) + ### Deprecated ### Removed diff --git a/cucumber-expressions/go/go.mod b/cucumber-expressions/go/go.mod index 8f5748ea4c..0cdd6f712d 100644 --- a/cucumber-expressions/go/go.mod +++ b/cucumber-expressions/go/go.mod @@ -1,4 +1,4 @@ -module github.com/cucumber/cucumber-expressions-go/v12 +module github.com/cucumber/common/cucumber-expressions/go/v12 require ( github.com/davecgh/go-spew v1.1.1 // indirect diff --git a/demo-formatter/go/cmd/main.go b/demo-formatter/go/cmd/main.go index 3abe2a24d8..eb2c1c2161 100644 --- a/demo-formatter/go/cmd/main.go +++ b/demo-formatter/go/cmd/main.go @@ -1,7 +1,7 @@ package main import ( - formatter "github.com/cucumber/demo-formatter-go" + formatter "github.com/cucumber/common/demo-formatter/go" "os" ) diff --git a/demo-formatter/go/go.mod b/demo-formatter/go/go.mod index a142c51f8c..246aad82c5 100644 --- a/demo-formatter/go/go.mod +++ b/demo-formatter/go/go.mod @@ -1,4 +1,4 @@ -module github.com/cucumber/demo-formatter-go +module github.com/cucumber/common/demo-formatter/go require ( github.com/cucumber/messages-go/v16 v16.0.1 diff --git a/gherkin/CHANGELOG.md b/gherkin/CHANGELOG.md index 2368e3840d..1747cdc9b0 100644 --- a/gherkin/CHANGELOG.md +++ b/gherkin/CHANGELOG.md @@ -13,6 +13,9 @@ This document is formatted according to the principles of [Keep A CHANGELOG](htt ### Changed +* [Go] Move module paths to point to monorepo + ([#1550](https://github.com/cucumber/common/issues/1550)) + ### Deprecated ### Removed diff --git a/gherkin/go/cmd/main.go b/gherkin/go/cmd/main.go index 6e2db96614..72d127b948 100644 --- a/gherkin/go/cmd/main.go +++ b/gherkin/go/cmd/main.go @@ -9,7 +9,7 @@ import ( "encoding/json" "flag" "fmt" - "github.com/cucumber/gherkin-go/v19" + "github.com/cucumber/common/gherkin/go/v19" "github.com/cucumber/messages-go/v16" "os" ) diff --git a/gherkin/go/gherkin-generate-tokens/gherkin-generate-tokens.go b/gherkin/go/gherkin-generate-tokens/gherkin-generate-tokens.go index cb99bbf48c..b0cdd0d0af 100644 --- a/gherkin/go/gherkin-generate-tokens/gherkin-generate-tokens.go +++ b/gherkin/go/gherkin-generate-tokens/gherkin-generate-tokens.go @@ -2,7 +2,7 @@ package main import ( "fmt" - "github.com/cucumber/gherkin-go/v19" + "github.com/cucumber/common/gherkin/go/v19" "io" "os" "strings" diff --git a/gherkin/go/go.mod b/gherkin/go/go.mod index 8808a76c3c..83c8893160 100644 --- a/gherkin/go/go.mod +++ b/gherkin/go/go.mod @@ -1,4 +1,4 @@ -module github.com/cucumber/gherkin-go/v19 +module github.com/cucumber/common/gherkin/go/v19 require ( github.com/cucumber/messages-go/v16 v16.0.1 diff --git a/json-formatter/CHANGELOG.md b/json-formatter/CHANGELOG.md index 9e44f65c6c..246131c17a 100644 --- a/json-formatter/CHANGELOG.md +++ b/json-formatter/CHANGELOG.md @@ -13,6 +13,9 @@ This document is formatted according to the principles of [Keep A CHANGELOG](htt ### Changed +* [Go] Move module paths to point to monorepo + ([#1550](https://github.com/cucumber/common/issues/1550)) + ### Deprecated ### Removed diff --git a/json-formatter/go/cmd/main.go b/json-formatter/go/cmd/main.go index f4568f2d94..face565c7c 100644 --- a/json-formatter/go/cmd/main.go +++ b/json-formatter/go/cmd/main.go @@ -2,7 +2,7 @@ package main import ( "flag" - jsonFormatter "github.com/cucumber/json-formatter-go/v18" + jsonFormatter "github.com/cucumber/common/json-formatter/go/v18" "log" "os" ) diff --git a/json-formatter/go/go.mod b/json-formatter/go/go.mod index ddf86fb311..a039730024 100644 --- a/json-formatter/go/go.mod +++ b/json-formatter/go/go.mod @@ -1,4 +1,4 @@ -module github.com/cucumber/json-formatter-go/v18 +module github.com/cucumber/common/json-formatter/go/v18 replace github.com/cucumber/messages-go/v16 => ../../messages/go diff --git a/messages/CHANGELOG.md b/messages/CHANGELOG.md index 1a704ca80b..ee074934c1 100644 --- a/messages/CHANGELOG.md +++ b/messages/CHANGELOG.md @@ -14,6 +14,9 @@ and this project adheres to [Semantic Versioning](http://semver.org/). ### Changed +* [Go] Move module paths to point to monorepo + ([#1550](https://github.com/cucumber/common/issues/1550)) + ### Deprecated ### Removed diff --git a/messages/go/go.mod b/messages/go/go.mod index 6569e9f136..cfa0ddc4bc 100644 --- a/messages/go/go.mod +++ b/messages/go/go.mod @@ -1,4 +1,4 @@ -module github.com/cucumber/messages-go/v16 +module github.com/cucumber/common/messages/go/v16 require ( github.com/gofrs/uuid v4.0.0+incompatible diff --git a/tag-expressions/CHANGELOG.md b/tag-expressions/CHANGELOG.md index 84d7e42ac4..8433480287 100644 --- a/tag-expressions/CHANGELOG.md +++ b/tag-expressions/CHANGELOG.md @@ -11,6 +11,9 @@ and this project adheres to [Semantic Versioning](http://semver.org/). ### Changed +* [Go] Move module paths to point to monorepo + ([#1550](https://github.com/cucumber/common/issues/1550)) + ### Deprecated ### Removed diff --git a/tag-expressions/go/go.mod b/tag-expressions/go/go.mod index eaeccb9060..7254c5eb68 100644 --- a/tag-expressions/go/go.mod +++ b/tag-expressions/go/go.mod @@ -1,4 +1,4 @@ -module github.com/cucumber/cucumber/tag-expressions-go/v3 +module github.com/cucumber/common/cucumber/tag-expressions/go/v3 require ( github.com/davecgh/go-spew v1.1.1 // indirect