Skip to content

Commit

Permalink
Release 7.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
aurelien-reeves committed Jul 19, 2021
1 parent 0d07576 commit 97a03c0
Show file tree
Hide file tree
Showing 3 changed files with 30 additions and 11 deletions.
27 changes: 23 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,22 @@ Please visit [cucumber/CONTRIBUTING.md](https://github.com/cucumber/cucumber/blo

---

## [In GIT](https://github.com/cucumber/cucumber-ruby/compare/v6.1.0...main)
## [In GIT](https://github.com/cucumber/cucumber-ruby/compare/v7.0.0...main)

### Added

### Fixed

### Changed

### Removed

### Security fixes

## [7.0.0](https://github.com/cucumber/cucumber-ruby/compare/v6.1.0...v7.0.0)

### Fixed

- Cucumber terminating with `negative argument` ArgumentError
([1546](https://github.com/cucumber/cucumber-ruby/issues/1546)
[1548](https://github.com/cucumber/cucumber-ruby/pull/1548)
Expand All @@ -24,15 +35,23 @@ Please visit [cucumber/CONTRIBUTING.md](https://github.com/cucumber/cucumber/blo
### Changed

- Upgrade of `cucumber-core`, `cucumber-gherkin` and `cucumber-messages`.

This brings some breaking changes in `Cucumber::Messages`.
([1544](https://github.com/cucumber/cucumber-ruby/pull/1544)
[aurelien-reeves](https://github.com/aurelien-reeves))

### Removed
This also fixes [1545](https://github.com/cucumber/cucumber-ruby/issues/1545)
([1549](https://github.com/cucumber/cucumber-ruby/pull/1549)
[luke-hill](https://github.com/luke-hill))

- On Windows, auto-detection of ANSICON has been removed - Windows now properly supports ANSI colors in the terminal. In case of issues on older versions of Windows, execute cucumber with `--no-color`, or install [ANSICON](https://github.com/adoxa/ansicon/) globally.
### Removed

### Security fixes
- On Windows, auto-detection of ANSICON has been removed - Windows now properly
supports ANSI colors in the terminal. In case of issues on older versions of
Windows, execute cucumber with `--no-color`, or install
[ANSICON](https://github.com/adoxa/ansicon/) globally.
([1561](https://github.com/cucumber/cucumber-ruby/pull/1561)
[yosukei3108](https://github.com/yosukei3108))

## [v6.1.0](https://github.com/cucumber/cucumber-ruby/compare/v6.0.0...v6.1.0)

Expand Down
12 changes: 6 additions & 6 deletions cucumber.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,13 @@ Gem::Specification.new do |s|
# Keep in sync with .circleci/config.yml & .rubocop.yml
s.required_ruby_version = '>= 2.5'
s.add_dependency 'builder', '~> 3.2', '>= 3.2.4'
s.add_dependency 'cucumber-core', '~> 10.0', '>= 10.0.0'
s.add_dependency 'cucumber-create-meta', '~> 6.0', '>= 6.0.0'
s.add_dependency 'cucumber-core', '~> 10.0', '>= 10.0.1'
s.add_dependency 'cucumber-create-meta', '~> 6.0', '>= 6.0.1'
s.add_dependency 'cucumber-cucumber-expressions', '~> 12.1', '>= 12.1.1'
s.add_dependency 'cucumber-gherkin', '~> 20.0', '>= 20.0.0'
s.add_dependency 'cucumber-html-formatter', '~> 16.0', '>= 16.0.0'
s.add_dependency 'cucumber-messages', '~> 17.0', '>= 17.0.0'
s.add_dependency 'cucumber-wire', '~> 6.0', '>= 6.0.0'
s.add_dependency 'cucumber-gherkin', '~> 20.0', '>= 20.0.1'
s.add_dependency 'cucumber-html-formatter', '~> 16.0', '>= 16.0.1'
s.add_dependency 'cucumber-messages', '~> 17.0', '>= 17.0.1'
s.add_dependency 'cucumber-wire', '~> 6.0', '>= 6.0.1'
s.add_dependency 'diff-lcs', '~> 1.4', '>= 1.4.4'
s.add_dependency 'mime-types', '~> 3.3', '>= 3.3.1'
s.add_dependency 'multi_test', '~> 0.1', '>= 0.1.2'
Expand Down
2 changes: 1 addition & 1 deletion lib/cucumber/version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
6.1.0
7.0.0

0 comments on commit 97a03c0

Please sign in to comment.