From d04a6b8ff61123a4e18914735e6493d476ab3717 Mon Sep 17 00:00:00 2001 From: Anil Maurya Date: Sat, 1 Aug 2020 08:00:21 +0530 Subject: [PATCH] Prepare for 5.1.0 release --- CHANGELOG.md | 5 +++++ lib/aasm/version.rb | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) 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