Skip to content

Commit

Permalink
Update version and changelog (#940)
Browse files Browse the repository at this point in the history
  • Loading branch information
tagliala authored Sep 24, 2024
1 parent 0ea9ae8 commit 1aeb754
Show file tree
Hide file tree
Showing 6 changed files with 19 additions and 14 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

## Unreleased

## Version 2.0.1

* Prefer `require_relative` for internal requires [#939][].

## Version 2.0.0

* Test against Rails 7.2 [#921][].
Expand Down Expand Up @@ -236,3 +240,4 @@ _No changes_.
[#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
[#939]: https://github.com/activeadmin/inherited_resources/pull/939
8 changes: 4 additions & 4 deletions Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: .
specs:
inherited_resources (2.0.0)
inherited_resources (2.0.1)
actionpack (>= 6.0)
has_scope (>= 0.6)
railties (>= 6.0)
Expand Down Expand Up @@ -97,7 +97,7 @@ GEM
has_scope (0.8.2)
actionpack (>= 5.2)
activesupport (>= 5.2)
i18n (1.14.5)
i18n (1.14.6)
concurrent-ruby (~> 1.0)
io-console (0.7.2)
irb (1.14.0)
Expand Down Expand Up @@ -222,7 +222,7 @@ GEM
rubocop-ast (>= 1.31.1, < 2.0)
rubocop-packaging (0.5.2)
rubocop (>= 1.33, < 2.0)
rubocop-performance (1.21.1)
rubocop-performance (1.22.1)
rubocop (>= 1.48.1, < 2.0)
rubocop-ast (>= 1.31.1, < 2.0)
ruby-progressbar (1.13.0)
Expand Down Expand Up @@ -274,4 +274,4 @@ DEPENDENCIES
warning

BUNDLED WITH
2.5.18
2.5.19
6 changes: 3 additions & 3 deletions gemfiles/rails_61/Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: ../..
specs:
inherited_resources (2.0.0)
inherited_resources (2.0.1)
actionpack (>= 6.0)
has_scope (>= 0.6)
railties (>= 6.0)
Expand Down Expand Up @@ -81,7 +81,7 @@ GEM
has_scope (0.8.2)
actionpack (>= 5.2)
activesupport (>= 5.2)
i18n (1.14.5)
i18n (1.14.6)
concurrent-ruby (~> 1.0)
loofah (2.22.0)
crass (~> 1.0.2)
Expand Down Expand Up @@ -212,4 +212,4 @@ DEPENDENCIES
warning

BUNDLED WITH
2.5.18
2.5.19
6 changes: 3 additions & 3 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.0)
inherited_resources (2.0.1)
actionpack (>= 6.0)
has_scope (>= 0.6)
railties (>= 6.0)
Expand Down Expand Up @@ -87,7 +87,7 @@ GEM
has_scope (0.8.2)
actionpack (>= 5.2)
activesupport (>= 5.2)
i18n (1.14.5)
i18n (1.14.6)
concurrent-ruby (~> 1.0)
loofah (2.22.0)
crass (~> 1.0.2)
Expand Down Expand Up @@ -211,4 +211,4 @@ DEPENDENCIES
warning

BUNDLED WITH
2.5.18
2.5.19
6 changes: 3 additions & 3 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.0)
inherited_resources (2.0.1)
actionpack (>= 6.0)
has_scope (>= 0.6)
railties (>= 6.0)
Expand Down Expand Up @@ -100,7 +100,7 @@ GEM
has_scope (0.8.2)
actionpack (>= 5.2)
activesupport (>= 5.2)
i18n (1.14.5)
i18n (1.14.6)
concurrent-ruby (~> 1.0)
io-console (0.7.2)
irb (1.14.0)
Expand Down Expand Up @@ -242,4 +242,4 @@ DEPENDENCIES
warning

BUNDLED WITH
2.5.18
2.5.19
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.0'.freeze
VERSION = '2.0.1'.freeze
end

0 comments on commit 1aeb754

Please sign in to comment.