Skip to content

Commit

Permalink
perl: Use version range for messages (#50)
Browse files Browse the repository at this point in the history
We did not specify a version range for the Cucumber::Messages dependency. This
wasn't a problem before, every version of message was usable. However once
cucumber/common#1741 was merged this was no longer
true.

Fixes #48
  • Loading branch information
mpkorstanje authored Dec 2, 2022
1 parent f15a95c commit f818210
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@ This document is formatted according to the principles of [Keep A CHANGELOG](htt
- [Java] Enabled reproducible builds

### Fixed
- Link to the correct repository in various package meta-data.
- Link to the correct repository in various package meta-data.
- [Perl] Specify version range for `Cucumber::Messages` dependency ([#50](https://github.com/cucumber/gherkin/pull/50))

## [25.0.2] - 2022-11-09
### Fixed
Expand Down
2 changes: 1 addition & 1 deletion perl/cpanfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
requires "perl", "5.14.0";
requires "Cpanel::JSON::XS";
requires "Class::XSAccessor";
requires "Cucumber::Messages";
requires "Cucumber::Messages", ">= 19.0.0, < 20.0.0";
requires "Data::UUID";
requires "Getopt::Long", "2.36";

Expand Down

0 comments on commit f818210

Please sign in to comment.