diff --git a/CHANGELOG.md b/CHANGELOG.md index 167525a..830cb98 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -20,7 +20,7 @@ This document is formatted according to the principles of [Keep A CHANGELOG](htt ### Fixed -## [v0.10.0-rc1] +## [v0.10.0] ### Added - Added concurrency support to the pretty formatter ([275](https://github.com/cucumber/godog/pull/275) - [lonnblad]) diff --git a/README.md b/README.md index 6de6134..b52115b 100644 --- a/README.md +++ b/README.md @@ -43,13 +43,13 @@ When automated testing is this much fun, teams can easily protect themselves fro ## Install ``` -go get github.com/cucumber/godog/cmd/godog@v0.10.0-rc1 +go get github.com/cucumber/godog/cmd/godog@v0.10.0 ``` -Adding `@v0.10.0-rc1` will install v0.10.0-rc1 specifically instead of master. +Adding `@v0.10.0` will install v0.10.0 specifically instead of master. Running `within the $GOPATH`, you would also need to set `GO111MODULE=on`, like this: ``` -GO111MODULE=on go get github.com/cucumber/godog/cmd/godog@v0.10.0-rc1 +GO111MODULE=on go get github.com/cucumber/godog/cmd/godog@v0.10.0 ``` ## Contributions @@ -178,7 +178,7 @@ func FeatureContext(s *godog.Suite) { s.Step(`^there should be (\d+) remaining$`, thereShouldBeRemaining) } -// godog v0.10.0-rc1 (latest) +// godog v0.10.0 (latest) func InitializeTestSuite(ctx *godog.TestSuiteContext) { ctx.BeforeSuite(func() { Godogs = 0 }) } @@ -252,7 +252,7 @@ func TestMain(m *testing.M) { FeatureContext(s) }, opts) - // godog v0.10.0-rc1 (latest) + // godog v0.10.0 (latest) status := godog.TestSuite{ Name: "godogs", TestSuiteInitializer: InitializeTestSuite, @@ -289,7 +289,7 @@ func TestMain(m *testing.M) { FeatureContext(s) }, opts) - // godog v0.10.0-rc1 (latest) + // godog v0.10.0 (latest) status := godog.TestSuite{ Name: "godogs", TestSuiteInitializer: InitializeTestSuite, @@ -326,7 +326,7 @@ func TestMain(m *testing.M) { FeatureContext(s) }, opts) - // godog v0.10.0-rc1 (latest) + // godog v0.10.0 (latest) status := godog.TestSuite{ Name: "godogs", TestSuiteInitializer: InitializeTestSuite, diff --git a/_examples/api/features/version.feature b/_examples/api/features/version.feature index 87334ef..8fa74c0 100644 --- a/_examples/api/features/version.feature +++ b/_examples/api/features/version.feature @@ -20,6 +20,6 @@ Feature: get version And the response should match json: """ { - "version": "v0.10.0-rc1" + "version": "v0.10.0" } """ diff --git a/godog.go b/godog.go index 33ab03f..895032e 100644 --- a/godog.go +++ b/godog.go @@ -39,4 +39,4 @@ Godog was inspired by Behat and Cucumber the above description is taken from it' package godog // Version of package - based on Semantic Versioning 2.0.0 http://semver.org/ -const Version = "v0.10.0-rc1" +const Version = "v0.10.0" diff --git a/release-notes/v0.10.0.md b/release-notes/v0.10.0.md index ad77cde..53ac711 100644 --- a/release-notes/v0.10.0.md +++ b/release-notes/v0.10.0.md @@ -53,8 +53,8 @@ Deprecation Notices ```go godog.TestSuite{ Name: suiteName, - TestSuiteInitializer: testSuiteInitializer, - ScenarioInitializer: scenarioInitializer, + TestSuiteInitializer: InitializeTestSuite, + ScenarioInitializer: InitializeScenario, }.Run() ``` @@ -62,8 +62,8 @@ godog.TestSuite{ ```go godog.TestSuite{ Name: suiteName, - TestSuiteInitializer: testSuiteInitializer, - ScenarioInitializer: scenarioInitializer, + TestSuiteInitializer: InitializeTestSuite, + ScenarioInitializer: InitializeScenario, Options: &opts, }.Run() ```