Skip to content

Commit 416bafc

Browse files
committed
Release: v1.3.0
1 parent db91f39 commit 416bafc

File tree

4 files changed

+7
-4
lines changed

4 files changed

+7
-4
lines changed

Gemfile

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
# frozen_string_literal: true
22

33
source "https://rubygems.org"
4-
54
gemspec
5+
6+
gem "jekyll", "~> #{ENV["JEKYLL_VERSION"]}" if ENV["JEKYLL_VERSION"]

History.markdown

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
1-
## HEAD
1+
## 1.3.0 / 2019-03-22
22

33
### Development Fixes
44

5+
* Allow Jekyll v4 (still alpha)
6+
* Drop Ruby < 2.4
57
* chore(deps): rubocop-jekyll 0.3.0 (#25)
68
* Target Ruby 2.4 (#30)
79

jekyll-commonmark.gemspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ Gem::Specification.new do |spec|
2020
spec.required_ruby_version = ">= 2.4.0"
2121

2222
spec.add_runtime_dependency "commonmarker", "~> 0.14"
23-
spec.add_runtime_dependency "jekyll", "~> 3.0"
23+
spec.add_runtime_dependency "jekyll", ">= 3.7", "< 5.0"
2424

2525
spec.add_development_dependency "bundler"
2626
spec.add_development_dependency "rake", "~> 12.0"

lib/jekyll-commonmark/version.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22

33
module Jekyll
44
module CommonMark
5-
VERSION = "1.2.0"
5+
VERSION = "1.3.0"
66
end
77
end

0 commit comments

Comments
 (0)