Skip to content

Commit 4672aaa

Browse files
committed
Relax Liquid dependency to include 4.x
1 parent 6192fa2 commit 4672aaa

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@ This project is [hosted on GitHub](https://github.com/bdesham/pluralize). Please
3636

3737
The version numbers of this project conform to [Semantic Versioning 2.0](http://semver.org/).
3838

39+
* 1.0.3 (2017-07-19): This Gem works with Liquid 4.x too.
3940
* 1.0.2 (2015-03-06): This Gem works with Liquid 3.x too and the dependencies should reflect that. Thanks to [Aidan Feldman](https://github.com/afeld) for verifying 3.x support and submitting the pull request.
4041
* 1.0.1 (2015-03-04): Correctly handle the number 1 when it is given in string form. Don’t refer to Jekyll in the code itself.
4142
* 1.0.0 (2013-08-20): Initial release.

liquid_pluralize.gemspec

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Gem::Specification.new do |s|
22
s.name = 'liquid_pluralize'
3-
s.version = '1.0.2'
4-
s.date = '2015-03-06'
3+
s.version = '1.0.3'
4+
s.date = '2017-07-19'
55

66
s.author = 'Benjamin Esham'
77
s.email = 'benjamin@esham.io'
@@ -13,5 +13,5 @@ Gem::Specification.new do |s|
1313

1414
s.files = ['lib/liquid_pluralize.rb']
1515

16-
s.add_runtime_dependency('liquid', ['>= 2.6', '< 4.0'])
16+
s.add_runtime_dependency('liquid', ['>= 2.6', '< 5.0'])
1717
end

0 commit comments

Comments
 (0)