10000 Merge pull request #5747 from activeadmin/cut_2.0.0 · stephancom/activeadmin@d2ad882 · GitHub
[go: up one dir, main page]

Skip to content

Commit d2ad882

Browse files
Merge pull request activeadmin#5747 from activeadmin/cut_2.0.0
Cut 2.0.0
2 parents 77470db + 99ec063 commit d2ad882

File tree

6 files changed

+16
-6
lines changed

6 files changed

+16
-6
lines changed

CHANGELOG.md

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
## Unreleased
44

5+
## 2.0.0 [](https://github.com/activeadmin/activeadmin/compare/v2.0.0.rc2..v2.0.0)
6+
7+
_No changes_.
8+
59
## 2.0.0.rc2 [](https://github.com/activeadmin/activeadmin/compare/v2.0.0.rc1..v2.0.0.rc2)
610

711
### Enhancements
@@ -51,6 +55,7 @@
5155
convert that file to plain JS (`//= require active_admin/base` if you
5256
didn't add any stuff to it).
5357
* Devise 3 support has been dropped. [#5608] by [@deivid-rodriguez] and [@javierjulio]
58+
* `action_item` without a name has been removed. [#5099] by [@javierjulio]
5459

5560
## 1.4.3 [](https://github.com/activeadmin/activeadmin/compare/v1.4.2..v1.4.3)
5661

@@ -237,7 +242,7 @@
237242
* Page supports belongs_to. [#4759] by [@Fivell] and [@zorab47]
238243
* Support for custom sorting strategies. [#4768] by [@Fivell]
239244
* Stream CSV downloads as they're generated. [#3038] by [@craigmcnamara]
240-
* Disable streaming in development for easier debugging. [#3535] by [@seanlinsley]
245+
* Disable streaming in development for easier debugging. [#3535] by [@seanlinsley]
241246
* Improved code reloading. [#3783] by [@chancancode]
242247
* Do not auto link to inaccessible actions. [#3686] by [@pranas]
243248
* Allow to enable comments on per-resource basis. [#3695] by [@pranas]
@@ -297,6 +302,8 @@
297302
ActiveSupport::Notifications.publish ActiveAdmin::Application::BeforeLoadEvent, "some data"
298303
```
299304

305+
* `action_item` without a name, to introduce a solution for removing action items (`remove_action_item(name)`). [#3091] by [@amiel]
306+
300307
## Previous Changes
301308

302309
Please check [0-6-stable] for previous changes.
@@ -334,6 +341,7 @@ Please check [0-6-stable] for previous changes.
334341
[#5043]: https://github.com/activeadmin/activeadmin/issues/5043
335342
[#5198]: https://github.com/activeadmin/activeadmin/issues/5198
336343

344+
[#3091]: https://github.com/activeadmin/activeadmin/pull/3091
337345
[#3435]: https://github.com/activeadmin/activeadmin/pull/3435
338346
[#4477]: https://github.com/activeadmin/activeadmin/pull/4477
339347
[#4731]: https://github.com/activeadmin/activeadmin/pull/4731
@@ -361,6 +369,7 @@ Please check [0-6-stable] for previous changes.
361369
[#5081]: https://github.com/activeadmin/activeadmin/pull/5081
362370
[#5088]: https://github.com/activeadmin/activeadmin/pull/5088
363371
[#5093]: https://github.com/activeadmin/activeadmin/pull/5093
372+
[#5099]: https://github.com/activeadmin/activeadmin/pull/5099
364373
[#5104]: https://github.com/activeadmin/activeadmin/pull/5104
365374
[#5119]: https://github.com/activeadmin/activeadmin/pull/5119
366375
[#5120]: https://github.com/activeadmin/activeadmin/pull/5120
@@ -431,6 +440,7 @@ Please check [0-6-stable] for previous changes.
431440
[@aarek]: https://github.com/aarek
432441
[@ajw725]: https://github.com/ajw725
433442
[@alex-bogomolov]: https://github.com/alex-bogomolov
443+
[@amiel]: https://github.com/amiel
434444
[@andreslemik]: https://github.com/andreslemik
435445
[@blocknotes]: https://github.com/blocknotes
436446
[@bolshakov]: https://github.com/bolshakov

Gemfile.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: .
33
specs:
4-
activeadmin (2.0.0.rc2)
4+
activeadmin (2.0.0)
55
arbre (~> 1.2, >= 1.2.1)
66
formtastic (~> 3.1)
77
formtastic_i18n (~> 0.4)

gemfiles/rails_50.gemfile.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: ..
33
specs:
4-
activeadmin (2.0.0.rc2)
4+
activeadmin (2.0.0)
55
arbre (~> 1.2, >= 1.2.1)
66
formtastic (~> 3.1)
77
formtastic_i18n (~> 0.4)

gemfiles/rails_51.gemfile.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: ..
33
specs:
4-
activeadmin (2.0.0.rc2)
4+
activeadmin (2.0.0)
55
arbre (~> 1.2, >= 1.2.1)
66
formtastic (~> 3.1)
77
formtastic_i18n (~> 0.4)

gemfiles/rails_60.gemfile.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ GIT
9393
PATH
9494
remote: ..
9595
specs:
96-
activeadmin (2.0.0.rc2)
96+
activeadmin (2.0.0)
9797
arbre (~> 1.2, >= 1.2.1)
9898
formtastic (~> 3.1)
9999
formtastic_i18n (~> 0.4)

lib/active_admin/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
module ActiveAdmin
2-
VERSION = '2.0.0.rc2'
2+
VERSION = '2.0.0'
33
end

0 commit comments

Comments
 (0)
0