Skip to content

Commit

Permalink
Merge branch 'version-bump'
Browse files Browse the repository at this point in the history
  • Loading branch information
uasi committed Jun 30, 2023
2 parents 971a89f + 05bf850 commit f6fdda4
Show file tree
Hide file tree
Showing 9 changed files with 21 additions and 14 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
## Unreleased

## 2.3.0
* Support Rails 5.0, 5.1, 5,2, 6.0, 6,1.
* Drop support of Rails 4.x.
* Rails7 not supported yet.
* Chanko::Config.eager_load has been replaced by a direct reference to Rails.configuration.eager_load.
* Fix cache resolver error on Rails 6.

## 2.2.1
* Support Rails 7.0.

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ it will be automatically hidden and fallback to its normal behavior.


## Requirements
* Ruby >= 2.1.0
* Rails >= 4.0.0
* Ruby >= 2.6.0
* Rails >= 5.0.0


## Usage
Expand Down
2 changes: 1 addition & 1 deletion chanko.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ Gem::Specification.new do |gem|
gem.require_paths = ["lib"]
gem.required_ruby_version = '>= 2.6.0'

gem.add_dependency "rails", ">= 4.0.0"
gem.add_dependency "rails", ">= 5.0.0"
gem.add_development_dependency "byebug"
gem.add_development_dependency "coffee-rails", ">= 3.0.10"
gem.add_development_dependency "jquery-rails"
Expand Down
4 changes: 2 additions & 2 deletions gemfiles/Gemfile_rails_5.0.rb.lock
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
PATH
remote: ..
specs:
chanko (2.2.1)
rails (>= 4.0.0)
chanko (2.3.0)
rails (>= 5.0.0)

GEM
remote: https://rubygems.org/
Expand Down
4 changes: 2 additions & 2 deletions gemfiles/Gemfile_rails_5.1.rb.lock
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
PATH
remote: ..
specs:
chanko (2.2.1)
rails (>= 4.0.0)
chanko (2.3.0)
rails (>= 5.0.0)

GEM
remote: https://rubygems.org/
Expand Down
4 changes: 2 additions & 2 deletions gemfiles/Gemfile_rails_5.2.rb.lock
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
PATH
remote: ..
specs:
chanko (2.2.1)
rails (>= 4.0.0)
chanko (2.3.0)
rails (>= 5.0.0)

GEM
remote: https://rubygems.org/
Expand Down
4 changes: 2 additions & 2 deletions gemfiles/Gemfile_rails_6.0.rb.lock
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
PATH
remote: ..
specs:
chanko (2.2.1)
rails (>= 4.0.0)
chanko (2.3.0)
rails (>= 5.0.0)

GEM
remote: https://rubygems.org/
Expand Down
4 changes: 2 additions & 2 deletions gemfiles/Gemfile_rails_6.1.rb.lock
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
PATH
remote: ..
specs:
chanko (2.2.1)
rails (>= 4.0.0)
chanko (2.3.0)
rails (>= 5.0.0)

GEM
remote: https://rubygems.org/
Expand Down
2 changes: 1 addition & 1 deletion lib/chanko/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module Chanko
VERSION = "2.2.1"
VERSION = "2.3.0"
end

0 comments on commit f6fdda4

Please sign in to comment.