From f09230a6fd4e614d00299300f53aad59f082b4d0 Mon Sep 17 00:00:00 2001 From: gedi Date: Sat, 29 Apr 2017 23:04:48 +0300 Subject: [PATCH] updates readme and changelog --- CHANGELOG.md | 6 ++++++ README.md | 7 +++++-- examples/api/version.feature | 2 +- godog.go | 2 +- 4 files changed, 13 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 58ea0f1..048f484 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Change LOG +**2017-04-29** +- added support for nested steps. From now on, it is possible to return + **godog.Steps** instead of an **error** in the step definition func. + This change introduced few minor changes in **Formatter** interface. Be + sure to adapt the changes if you have custom formatters. + **2017-04-27** - added an option to randomize scenario execution order, so we could ensure that scenarios do not depend on global state. diff --git a/README.md b/README.md index cf32125..882d2c2 100644 --- a/README.md +++ b/README.md @@ -248,8 +248,11 @@ See implementation examples: ### FAQ -**Q:** Where can I configure common options globally? -**A:** You can't. Alias your common or project based commands: `alias godog-wip="godog --format=progress --tags=@wip"` +#### Configure common options for godog CLI + +There are no global options or configuration files. Alias your common or +project based commands: `alias godog-wip="godog --format=progress +--tags=@wip"` ### Contributions diff --git a/examples/api/version.feature b/examples/api/version.feature index 8136d93..3664fa2 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.6.3" + "version": "v0.7.0" } """ diff --git a/godog.go b/godog.go index a37f679..80d8fd0 100644 --- a/godog.go +++ b/godog.go @@ -42,4 +42,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.6.3" +const Version = "v0.7.0"