jekyll-commonmark 1.3.0 → 1.3.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: f8f2b667d4e48524510c2fc1d13be5074e1e62a3e3699df727a5b9aa676eb687
4
- data.tar.gz: ef8ab723faad439a0e717bd6251066127b2b3c22eb098c90f0f0b4305f084d64
3
+ metadata.gz: 58a192c8c9aa43348774a618188e123dc7d27543c307deb1404cbffd07331928
4
+ data.tar.gz: d20ef7efbb6f718568a8fa91b8cc4e416a386a250eded43bc8814f0ecdd4b1d2
5
5
  SHA512:
6
- metadata.gz: 789df562b30e53e50af25079dea399e06e3605e8b92a6fc2fb6a5de8507de79625f19f6f9105cb984183d7d616b0bb583487e48e1bcaf1b5036df9584ac448eb
7
- data.tar.gz: dfb2879c01320367d9ea4809cb1ea184138c8bfc1b6ba8ac0666d33839db5d11df21c39c0b78306c74085777f45f09d1bac4bfe63bf699ff10423e6a87b22477
6
+ metadata.gz: 6bfd1ff4f5992203c0ddf2c5f7d6ad62a413ca3e5c8612a36c286a7c8fa8bd1f608826ac1a2977d55d22192f5e5f483ea9b68cd92c2f0fa05ada060652812517
7
+ data.tar.gz: 0e52a1ff5a1a003c56a7acfe9c41be6446a0281d12e51a352f3f7b9d3bfc66dea05dc630f8ee2ab055ed050a6f3633f24b3e1829429a74fa26058bed8577b196
@@ -6,7 +6,7 @@ inherit_gem:
6
6
  rubocop-jekyll: .rubocop.yml
7
7
 
8
8
  AllCops:
9
- TargetRubyVersion: 2.4
9
+ TargetRubyVersion: 2.3
10
10
  Exclude:
11
11
  - script/**/*
12
12
  - vendor/**/*
@@ -1,8 +1,9 @@
1
1
  language: ruby
2
2
  cache: bundler
3
3
  rvm:
4
- - 2.6
4
+ - &latest_ruby 2.6
5
5
  - 2.4
6
+ - 2.3
6
7
  git:
7
8
  depth: 3
8
9
 
@@ -22,4 +23,13 @@ script: script/cibuild
22
23
 
23
24
  env:
24
25
  global:
25
- - NOKOGIRI_USE_SYSTEM_LIBRARIES=true
26
+ - NOKOGIRI_USE_SYSTEM_LIBRARIES=true
27
+ matrix:
28
+ - JEKYLL_VERSION="~> 3.8"
29
+
30
+ matrix:
31
+ include:
32
+ - rvm: *latest_ruby
33
+ env: JEKYLL_VERSION="~> 3.7.4"
34
+ - rvm: *latest_ruby
35
+ env: JEKYLL_VERSION=">= 4.0.0.pre.alpha1"
data/Gemfile CHANGED
@@ -3,4 +3,4 @@
3
3
  source "https://rubygems.org"
4
4
  gemspec
5
5
 
6
- gem "jekyll", "~> #{ENV["JEKYLL_VERSION"]}" if ENV["JEKYLL_VERSION"]
6
+ gem "jekyll", ENV["JEKYLL_VERSION"] if ENV["JEKYLL_VERSION"]
@@ -1,3 +1,9 @@
1
+ ## 1.3.1 / 2019-03-25
2
+
3
+ ### Bug Fixes
4
+
5
+ * Re-introduce Ruby 2.3 support and test Jekyll 3.7+ (#32)
6
+
1
7
  ## 1.3.0 / 2019-03-22
2
8
 
3
9
  ### Development Fixes
@@ -3,14 +3,19 @@ clone_depth: 5
3
3
  build: off
4
4
 
5
5
  install:
6
- - SET PATH=C:\Ruby%RUBY_FOLDER_VER%\bin;%PATH%
6
+ - SET PATH=C:\Ruby%RUBY_FOLDER_VER%-x64\bin;%PATH%
7
7
  - bundle install --retry 5 --jobs=%NUMBER_OF_PROCESSORS% --clean --path vendor\bundle
8
8
 
9
9
  environment:
10
+ JEKYLL_VERSION: "~> 3.8"
10
11
  matrix:
11
- - RUBY_FOLDER_VER: "25"
12
- - RUBY_FOLDER_VER: "25-x64"
12
+ - RUBY_FOLDER_VER: "26"
13
+ JEKYLL_VERSION : "~> 3.7.4"
14
+ - RUBY_FOLDER_VER: "26"
15
+ JEKYLL_VERSION : ">= 4.0.0.pre.alpha1"
16
+ - RUBY_FOLDER_VER: "26"
13
17
  - RUBY_FOLDER_VER: "24"
18
+ - RUBY_FOLDER_VER: "23"
14
19
 
15
20
  test_script:
16
21
  - ruby --version
@@ -17,7 +17,7 @@ Gem::Specification.new do |spec|
17
17
  spec.test_files = spec.files.grep(%r!^(test|spec|features)/!)
18
18
  spec.require_paths = ["lib"]
19
19
 
20
- spec.required_ruby_version = ">= 2.4.0"
20
+ spec.required_ruby_version = ">= 2.3.0"
21
21
 
22
22
  spec.add_runtime_dependency "commonmarker", "~> 0.14"
23
23
  spec.add_runtime_dependency "jekyll", ">= 3.7", "< 5.0"
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Jekyll
4
4
  module CommonMark
5
- VERSION = "1.3.0"
5
+ VERSION = "1.3.1"
6
6
  end
7
7
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jekyll-commonmark
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.3.0
4
+ version: 1.3.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Pat Hawks
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2019-03-22 00:00:00.000000000 Z
11
+ date: 2019-03-25 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: commonmarker
@@ -139,7 +139,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
139
139
  requirements:
140
140
  - - ">="
141
141
  - !ruby/object:Gem::Version
142
- version: 2.4.0
142
+ version: 2.3.0
143
143
  required_rubygems_version: !ruby/object:Gem::Requirement
144
144
  requirements:
145
145
  - - ">="