diff --git a/CHANGELOG.md b/CHANGELOG.md index 6f29cc5..cdabb15 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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. diff --git a/lib/aasm/version.rb b/lib/aasm/version.rb index 4a998ec..a202618 100644 --- a/lib/aasm/version.rb +++ b/lib/aasm/version.rb @@ -1,3 +1,3 @@ module AASM - VERSION = "5.0.8" + VERSION = "5.1.0" end