diff --git a/CHANGELOG.md b/CHANGELOG.md index e56e408..6fa8673 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,6 @@ +## [1.0.11] - 18/09/2019 +* Fixed package constraints so older versions of Flutter are compatible + ## [1.0.10] - 18/09/2019 * {string} placeholder variables can now contain whitespace characters [\n\r\t ] * Tags are now inherited by children if requried (see https://cucumber.io/docs/cucumber/api/#tag-inheritance) diff --git a/pubspec.lock b/pubspec.lock index fcf5aca..eb76c5b 100644 --- a/pubspec.lock +++ b/pubspec.lock @@ -104,7 +104,7 @@ packages: name: gherkin url: "https://pub.dartlang.org" source: hosted - version: "1.0.10" + version: "1.0.11" glob: dependency: "direct main" description: diff --git a/pubspec.yaml b/pubspec.yaml index 3c16e87..ca56962 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,6 +1,6 @@ name: flutter_gherkin description: A Gherkin / Cucumber parser and test runner for Dart and Flutter -version: 1.0.10 +version: 1.0.11 author: Jon Samwell homepage: https://github.com/jonsamwell/flutter_gherkin @@ -16,7 +16,7 @@ dependencies: sdk: flutter glob: ^1.1.7 meta: ">=1.1.6 <=1.1.7" - gherkin: ^1.0.10 + gherkin: ^1.0.11 dev_dependencies: test: ">=1.6.1 <=1.6.10"