1
0
Fork 0
mirror of https://github.com/aasm/aasm synced 2023-03-27 23:22:41 -04:00

Prepare for 5.1.0 release

This commit is contained in:
Anil Maurya 2020-08-01 08:00:21 +05:30
parent 214260657d
commit d04a6b8ff6
2 changed files with 6 additions and 1 deletions

View file

@ -2,6 +2,11 @@
## unreleased
## 5.1.0
* Fix after_commit in nested transactions [#536](https://github.com/aasm/aasm/issues/536) without explicit AR dependency in PR [#668](https://github.com/aasm/aasm/pull/668), thanks to [stokarenko](https://github.com/stokarenko)
* Remove support for Rails 3.2
## 5.0.8
* Revert Fix for :after_commit within nested transaction because it adds after_commit_action dependency which is dependent on many gems.

View file

@ -1,3 +1,3 @@
module AASM
VERSION = "5.0.8"
VERSION = "5.1.0"
end