Skip to content

Commit

Permalink
Bump up min Ruby version requirement to 2.5
Browse files Browse the repository at this point in the history
  • Loading branch information
jaredcwhite committed May 1, 2020
1 parent 9cb8d8c commit ab344c4
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 5 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# master

# 0.12.1 / 2020-05-01

* Update the minimum Ruby version requirement to 2.5

# 0.12.0 "Lovejoy" / 2020-04-27

* Add Concurrently and Browsersync for live reload, plus add new Yarn scripts [#21](https://github.com/bridgetownrb/bridgetown/pull/21)
Expand Down
6 changes: 3 additions & 3 deletions bridgetown-core/bridgetown-core.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ Gem::Specification.new do |s|
s.description = "Bridgetown is a Webpack-aware, Ruby-powered static site generator for the modern Jamstack era"

s.files = `git ls-files -z`.split("\x0").reject do |f|
f.match(%r{^(benchmark|features|script|test)/})
f.match(%r!^(benchmark|features|script|test)/!)
end
s.executables = ["bridgetown"]
s.bindir = "bin"
Expand All @@ -26,9 +26,9 @@ Gem::Specification.new do |s|
"homepage_uri" => s.homepage,
}

s.rdoc_options = ["--charset=UTF-8"]
s.rdoc_options = ["--charset=UTF-8"]

s.required_ruby_version = ">= 2.4.0"
s.required_ruby_version = ">= 2.5.0"
s.required_rubygems_version = ">= 2.7.0"

s.add_runtime_dependency("addressable", "~> 2.4")
Expand Down
2 changes: 1 addition & 1 deletion bridgetown-core/lib/bridgetown-core/version.rb
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# frozen_string_literal: true

module Bridgetown
VERSION = "0.12.0"
VERSION = "0.12.1"
CODE_NAME = "Lovejoy"
end
2 changes: 1 addition & 1 deletion bridgetown/bridgetown.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Gem::Specification.new do |s|
s.test_files = `git ls-files -z -- {fixtures,features}/*`.split("\0")
s.require_path = "lib"

s.required_ruby_version = ">= 2.4.0"
s.required_ruby_version = ">= 2.5.0"
s.required_rubygems_version = ">= 2.7.0"

s.add_dependency("bridgetown-core", Bridgetown::VERSION)
Expand Down

0 comments on commit ab344c4

Please sign in to comment.