Skip to content

Commit 53ea42f

Browse files
committed
Rollback to last stable 1.9.4 with selective cherry picking
1 parent d644157 commit 53ea42f

File tree

5 files changed

+8
-6
lines changed

5 files changed

+8
-6
lines changed

examples/02-category/Gemfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ gem "minima", "~> 2.0"
2121
source 'https://rubygems.org'
2222

2323
group :jekyll_plugins do
24-
gem "jekyll-paginate-v2", "~> 1.7"
24+
gem "jekyll-paginate-v2", ">= 3.0"
2525
gem "jekyll-feed"
2626
end
2727

examples/03-tags/Gemfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ gem "minima", "~> 2.0"
2121
source 'https://rubygems.org'
2222

2323
group :jekyll_plugins do
24-
gem "jekyll-paginate-v2", "~> 1.7"
24+
gem "jekyll-paginate-v2", ">= 3.0"
2525
gem "jekyll-feed"
2626
end
2727

examples/04-jsonapi/Gemfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ gem "minima", "~> 2.0"
2121
source 'https://rubygems.org'
2222

2323
group :jekyll_plugins do
24-
gem "jekyll-paginate-v2", "~> 1.7"
24+
gem "jekyll-paginate-v2", ">= 3.0"
2525
gem "jekyll-feed"
2626
end
2727

jekyll-paginate-v2.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ Gem::Specification.new do |spec|
1515
spec.homepage = "https://github.com/sverrirs/jekyll-paginate-v2"
1616
spec.license = "MIT"
1717

18-
spec.summary = %q{Pagination Generator for Jekyll 3}
18+
spec.summary = %q{Pagination Generator for Jekyll 3 and newer}
1919
spec.description = %q{An enhanced zero-configuration in-place replacement for the now decomissioned built-in jekyll-paginate gem. This pagination gem offers full backwards compatability as well as a slew of new frequently requested features with minimal additional site and page configuration. Optional features include auto-generation of paginated collection, tag and category pages.}
2020

2121
spec.files = Dir['CODE_OF_CONDUCT.md', 'README*.md', 'LICENSE', 'Rakefile', '*.gemspec', 'Gemfile', 'lib/**/*', 'spec/**/*']

lib/jekyll-paginate-v2/version.rb

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
11
module Jekyll
22
module PaginateV2
3-
VERSION = "2.0.0"
3+
VERSION = "3.0.0"
44
# When modifying remember to issue a new tag command in git before committing, then push the new tag
5-
# git tag -a v2.0.0 -m "Gem v2.0.0"
5+
# git tag -a v3.0.0 -m "Gem v3.0.0"
66
# git push origin --tags
77
# Yanking a published Gem
88
# gem yank jekyll-paginate-v2 -v VERSION
9+
# Building gem
10+
# gem build jekyll-paginate-v2.gemspec
911
end # module PaginateV2
1012
end # module Jekyll

0 commit comments

Comments
 (0)