Skip to content

Commit

Permalink
Release: v1.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
DirtyF committed Mar 22, 2019
1 parent 096576c commit 3ac9404
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 6 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,4 @@
bin
Gemfile.lock
pkg/*.gem
spec/fixtures/.jekyll-cache
2 changes: 1 addition & 1 deletion .rubocop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ inherit_gem:
rubocop-jekyll: .rubocop.yml

AllCops:
TargetRubyVersion: 2.3
TargetRubyVersion: 2.4
Exclude:
- vendor/**/*
Layout/FirstParameterIndentation:
Expand Down
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ rvm:
before_install:
- gem update --system
- gem install bundler

script: script/cibuild

env:
Expand Down
3 changes: 2 additions & 1 deletion Gemfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# frozen_string_literal: true

source "https://rubygems.org"

gemspec

gem "jekyll", "~> #{ENV["JEKYLL_VERSION"]}" if ENV["JEKYLL_VERSION"]
4 changes: 3 additions & 1 deletion History.markdown
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
## HEAD
## 1.5.0 / 2019-03-22

### Development Fixes

* Allow Jekyll v4 (still alpha)
* Drop support for Ruby 2.3
* chore(deps): rubocop-jekyll 0.3 (#65)
* Reintroduce style checks (#67)

Expand Down
4 changes: 2 additions & 2 deletions jekyll-mentions.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@ Gem::Specification.new do |s|
s.licenses = ["MIT"]
s.files = ["lib/jekyll-mentions.rb"]

s.required_ruby_version = ">= 2.3.0"
s.required_ruby_version = ">= 2.4.0"

s.add_dependency "html-pipeline", "~> 2.3"
s.add_dependency "jekyll", "~> 3.0"
s.add_dependency "jekyll", ">= 3.7", "< 5.0"

s.add_development_dependency "bundler"
s.add_development_dependency "rake", "~> 12.0"
Expand Down
2 changes: 1 addition & 1 deletion lib/jekyll-mentions/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# frozen_string_literal: true

module JekyllMentions
VERSION = "1.4.1"
VERSION = "1.5.0"
end

0 comments on commit 3ac9404

Please sign in to comment.