diff --git a/builder_go111_test.go b/builder_go111_test.go index 12afd21..af73124 100644 --- a/builder_go111_test.go +++ b/builder_go111_test.go @@ -36,7 +36,7 @@ func TestGodogBuildWithModuleOutsideGopathAndHavingOnlyFeature(t *testing.T) { t.Fatal(err) } - if out, err := exec.Command("go", "mod", "edit", "-require", "github.com/DATA-DOG/godog@v0.7.11").CombinedOutput(); err != nil { + if out, err := exec.Command("go", "mod", "edit", "-require", "github.com/DATA-DOG/godog@v0.7.12").CombinedOutput(); err != nil { t.Log(string(out)) t.Fatal(err) } diff --git a/examples/api/version.feature b/examples/api/version.feature index 7b43ef0..48d154a 100644 --- a/examples/api/version.feature +++ b/examples/api/version.feature @@ -20,6 +20,6 @@ Feature: get version And the response should match json: """ { - "version": "v0.7.12" + "version": "v0.7.13" } """ diff --git a/godog.go b/godog.go index e0212bc..d6dd3d7 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.7.12" +const Version = "v0.7.13"