Skip to content

Commit

Permalink
Drop support for Rails v5.x
Browse files Browse the repository at this point in the history
  • Loading branch information
westonganger committed Aug 20, 2024
1 parent 292ee76 commit 65558c1
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 5 deletions.
2 changes: 0 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,6 @@ jobs:
- ruby: "3.2"
- ruby: "3.3"
### TEST RAILS VERSIONS
- ruby: "2.7"
rails_version: "~> 5.2"
- ruby: "2.7"
rails_version: "~> 6.0"
- ruby: "2.7"
Expand Down
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# CHANGELOG

### Unreleased - [View Diff](https://github.com/westonganger/rails_i18n_manager/compare/v1.0.1...master)
- Nothing yet
- Drop support for Rails v5.x

### v1.0.1 - [View Diff](https://github.com/westonganger/rails_i18n_manager/compare/v1.0.0...v1.0.1)
- [#14](https://github.com/westonganger/rails_i18n_manager/pull/14) - Remove usage of Array#intersection to fix errors in Ruby 2.6 and below
Expand Down
2 changes: 1 addition & 1 deletion db/migrate/20221001001344_add_rails_i18n_manager_tables.rb
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
class AddRailsI18nManagerTables < ActiveRecord::Migration[5.2]
class AddRailsI18nManagerTables < ActiveRecord::Migration[6.0]
def change

create_table :rails_i18n_manager_translation_apps do |t|
Expand Down
2 changes: 1 addition & 1 deletion rails_i18n_manager.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Gem::Specification.new do |spec|

spec.files = Dir["{app,config,db,lib,public}/**/*", "LICENSE", "Rakefile", "README.md"]

spec.add_dependency "rails", ">= 5.0"
spec.add_dependency "rails", ">= 6.0"
spec.add_dependency "slim"
spec.add_dependency "kaminari"
spec.add_dependency "active_sort_order"
Expand Down

0 comments on commit 65558c1

Please sign in to comment.