Skip to content

Commit 32ee259

Browse files
ashmaroliDirtyF
authored andcommitted
Allow testing with Jekyll 4.x (jekyll#351)
1 parent e087ba4 commit 32ee259

File tree

3 files changed

+13
-2
lines changed

3 files changed

+13
-2
lines changed

.travis.yml

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,15 @@
11
language: ruby
22
cache: bundler
3-
rvm: 2.4
3+
rvm:
4+
- 2.6
5+
- 2.4
46

7+
before_install: gem update --system
58
install: script/bootstrap
69
script: script/cibuild
10+
11+
env:
12+
matrix:
13+
- JEKYLL_VERSION="~> 3.5"
14+
- JEKYLL_VERSION="~> 3.8.0"
15+
- JEKYLL_VERSION=">= 4.0.0.pre.alpha1"

Gemfile

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,5 @@
22

33
source "https://rubygems.org"
44
gemspec
5+
6+
gem "jekyll", ENV["JEKYLL_VERSION"] if ENV["JEKYLL_VERSION"]

minima.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Gem::Specification.new do |spec|
1616
f.match(%r!^(assets|_(includes|layouts|sass)/|(LICENSE|README)((\.(txt|md|markdown)|$)))!i)
1717
end
1818

19-
spec.add_runtime_dependency "jekyll", "~> 3.5"
19+
spec.add_runtime_dependency "jekyll", ">= 3.5", "< 5.0"
2020
spec.add_runtime_dependency "jekyll-feed", "~> 0.9"
2121
spec.add_runtime_dependency "jekyll-seo-tag", "~> 2.1"
2222

0 commit comments

Comments
 (0)