Skip to content

Commit 1aeb754

Browse files
authored
Update version and changelog (activeadmin#940)
1 parent 0ea9ae8 commit 1aeb754

File tree

6 files changed

+19
-14
lines changed

6 files changed

+19
-14
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
## Unreleased
44

5+
## Version 2.0.1
6+
7+
* Prefer `require_relative` for internal requires [#939][].
8+
59
## Version 2.0.0
610

711
* Test against Rails 7.2 [#921][].
@@ -236,3 +240,4 @@ _No changes_.
236240
[#918]: https://github.com/activeadmin/inherited_resources/pull/918
237241
[#921]: https://github.com/activeadmin/inherited_resources/pull/921
238242
[#933]: https://github.com/activeadmin/inherited_resources/pull/933
243+
[#939]: https://github.com/activeadmin/inherited_resources/pull/939

Gemfile.lock

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: .
33
specs:
4-
inherited_resources (2.0.0)
4+
inherited_resources (2.0.1)
55
actionpack (>= 6.0)
66
has_scope (>= 0.6)
77
railties (>= 6.0)
@@ -97,7 +97,7 @@ GEM
9797
has_scope (0.8.2)
9898
actionpack (>= 5.2)
9999
activesupport (>= 5.2)
100-
i18n (1.14.5)
100+
i18n (1.14.6)
101101
concurrent-ruby (~> 1.0)
102102
io-console (0.7.2)
103103
irb (1.14.0)
@@ -222,7 +222,7 @@ GEM
222222
rubocop-ast (>= 1.31.1, < 2.0)
223223
rubocop-packaging (0.5.2)
224224
rubocop (>= 1.33, < 2.0)
225-
rubocop-performance (1.21.1)
225+
rubocop-performance (1.22.1)
226226
rubocop (>= 1.48.1, < 2.0)
227227
rubocop-ast (>= 1.31.1, < 2.0)
228228
ruby-progressbar (1.13.0)
@@ -274,4 +274,4 @@ DEPENDENCIES
274274
warning
275275

276276
BUNDLED WITH
277-
2.5.18
277+
2.5.19

gemfiles/rails_61/Gemfile.lock

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: ../..
33
specs:
4-
inherited_resources (2.0.0)
4+
inherited_resources (2.0.1)
55
actionpack (>= 6.0)
66
has_scope (>= 0.6)
77
railties (>= 6.0)
@@ -81,7 +81,7 @@ GEM
8181
has_scope (0.8.2)
8282
actionpack (>= 5.2)
8383
activesupport (>= 5.2)
84-
i18n (1.14.5)
84+
i18n (1.14.6)
8585
concurrent-ruby (~> 1.0)
8686
loofah (2.22.0)
8787
crass (~> 1.0.2)
@@ -212,4 +212,4 @@ DEPENDENCIES
212212
warning
213213

214214
BUNDLED WITH
215-
2.5.18
215+
2.5.19

gemfiles/rails_70/Gemfile.lock

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: ../..
33
specs:
4-
inherited_resources (2.0.0)
4+
inherited_resources (2.0.1)
55
actionpack (>= 6.0)
66
has_scope (>= 0.6)
77
railties (>= 6.0)
@@ -87,7 +87,7 @@ GEM
8787
has_scope (0.8.2)
8888
actionpack (>= 5.2)
8989
activesupport (>= 5.2)
90-
i18n (1.14.5)
90+
i18n (1.14.6)
9191
concurrent-ruby (~> 1.0)
9292
loofah (2.22.0)
9393
crass (~> 1.0.2)
@@ -211,4 +211,4 @@ DEPENDENCIES
211211
warning
212212

213213
BUNDLED WITH
214-
2.5.18
214+
2.5.19

gemfiles/rails_71/Gemfile.lock

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: ../..
33
specs:
4-
inherited_resources (2.0.0)
4+
inherited_resources (2.0.1)
55
actionpack (>= 6.0)
66
has_scope (>= 0.6)
77
railties (>= 6.0)
@@ -100,7 +100,7 @@ GEM
100100
has_scope (0.8.2)
101101
actionpack (>= 5.2)
102102
activesupport (>= 5.2)
103-
i18n (1.14.5)
103+
i18n (1.14.6)
104104
concurrent-ruby (~> 1.0)
105105
io-console (0.7.2)
106106
irb (1.14.0)
@@ -242,4 +242,4 @@ DEPENDENCIES
242242
warning
243243

244244
BUNDLED WITH
245-
2.5.18
245+
2.5.19

lib/inherited_resources/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# frozen_string_literal: true
22
module InheritedResources
3-
VERSION = '2.0.0'.freeze
3+
VERSION = '2.0.1'.freeze
44
end

0 commit comments

Comments
 (0)