Skip to content

Commit

Permalink
Update version, changelog, and outdated deps (#949)
Browse files Browse the repository at this point in the history
  • Loading branch information
tagliala authored Dec 7, 2024
1 parent 8a20bdf commit db07d07
Show file tree
Hide file tree
Showing 6 changed files with 22 additions and 20 deletions.
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
# Changelog

## Unreleased
## Version 2.1.0

* Support for setting the parent controller class [#903][]
* Remove support for Ruby `< 3.1`
* Remove support for Rails `< 7.0`
* Test against Rails 8.0
Expand Down Expand Up @@ -241,6 +242,7 @@ _No changes_
* First release. Support to I18n, singleton controllers, polymorphic controllers, belongs_to, nested_belongs_to and url helpers

[#873]: https://github.com/activeadmin/inherited_resources/pull/873
[#903]: https://github.com/activeadmin/inherited_resources/pull/903
[#918]: https://github.com/activeadmin/inherited_resources/pull/918
[#921]: https://github.com/activeadmin/inherited_resources/pull/921
[#933]: https://github.com/activeadmin/inherited_resources/pull/933
Expand Down
10 changes: 5 additions & 5 deletions Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: .
specs:
inherited_resources (2.0.1)
inherited_resources (2.1.0)
actionpack (>= 7.0)
has_scope (>= 0.6)
railties (>= 7.0)
Expand Down Expand Up @@ -119,13 +119,13 @@ GEM
marcel (1.0.4)
mini_mime (1.1.5)
mini_portile2 (2.8.8)
minitest (5.25.2)
minitest (5.25.4)
minitest-reporters (1.7.1)
ansi
builder
minitest (>= 5.0)
ruby-progressbar
mocha (2.6.1)
mocha (2.7.0)
ruby2_keywords (>= 0.0.5)
net-imap (0.5.1)
date
Expand Down Expand Up @@ -248,7 +248,7 @@ GEM
unicode-emoji (~> 4.0, >= 4.0.4)
unicode-emoji (4.0.4)
uri (1.0.2)
useragent (0.16.10)
useragent (0.16.11)
warning (1.4.0)
websocket-driver (0.7.6)
websocket-extensions (>= 0.1.0)
Expand Down Expand Up @@ -278,4 +278,4 @@ DEPENDENCIES
warning

BUNDLED WITH
2.5.22
2.5.23
8 changes: 4 additions & 4 deletions gemfiles/rails_70/Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: ../..
specs:
inherited_resources (2.0.1)
inherited_resources (2.1.0)
actionpack (>= 7.0)
has_scope (>= 0.6)
railties (>= 7.0)
Expand Down Expand Up @@ -101,13 +101,13 @@ GEM
method_source (1.1.0)
mini_mime (1.1.5)
mini_portile2 (2.8.8)
minitest (5.25.2)
minitest (5.25.4)
minitest-reporters (1.7.1)
ansi
builder
minitest (>= 5.0)
ruby-progressbar
mocha (2.6.1)
mocha (2.7.0)
ruby2_keywords (>= 0.0.5)
net-imap (0.5.1)
date
Expand Down Expand Up @@ -212,4 +212,4 @@ DEPENDENCIES
zeitwerk (~> 2.6.18)

BUNDLED WITH
2.5.22
2.5.23
8 changes: 4 additions & 4 deletions gemfiles/rails_71/Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: ../..
specs:
inherited_resources (2.0.1)
inherited_resources (2.1.0)
actionpack (>= 7.0)
has_scope (>= 0.6)
railties (>= 7.0)
Expand Down Expand Up @@ -122,13 +122,13 @@ GEM
marcel (1.0.4)
mini_mime (1.1.5)
mini_portile2 (2.8.8)
minitest (5.25.2)
minitest (5.25.4)
minitest-reporters (1.7.1)
ansi
builder
minitest (>= 5.0)
ruby-progressbar
mocha (2.6.1)
mocha (2.7.0)
ruby2_keywords (>= 0.0.5)
mutex_m (0.3.0)
net-imap (0.5.1)
Expand Down Expand Up @@ -248,4 +248,4 @@ DEPENDENCIES
zeitwerk (~> 2.6.18)

BUNDLED WITH
2.5.22
2.5.23
10 changes: 5 additions & 5 deletions gemfiles/rails_72/Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: ../..
specs:
inherited_resources (2.0.1)
inherited_resources (2.1.0)
actionpack (>= 7.0)
has_scope (>= 0.6)
railties (>= 7.0)
Expand Down Expand Up @@ -116,13 +116,13 @@ GEM
marcel (1.0.4)
mini_mime (1.1.5)
mini_portile2 (2.8.8)
minitest (5.25.2)
minitest (5.25.4)
minitest-reporters (1.7.1)
ansi
builder
minitest (>= 5.0)
ruby-progressbar
mocha (2.6.1)
mocha (2.7.0)
ruby2_keywords (>= 0.0.5)
net-imap (0.5.1)
date
Expand Down Expand Up @@ -215,7 +215,7 @@ GEM
timeout (0.4.2)
tzinfo (2.0.6)
concurrent-ruby (~> 1.0)
useragent (0.16.10)
useragent (0.16.11)
warning (1.4.0)
websocket-driver (0.7.6)
websocket-extensions (>= 0.1.0)
Expand All @@ -242,4 +242,4 @@ DEPENDENCIES
zeitwerk (~> 2.6.18)

BUNDLED WITH
2.5.22
2.5.23
2 changes: 1 addition & 1 deletion lib/inherited_resources/version.rb
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# frozen_string_literal: true
module InheritedResources
VERSION = '2.0.1'.freeze
VERSION = '2.1.0'.freeze
end

0 comments on commit db07d07

Please sign in to comment.