From 262421ecd9f5a8e229f966e6ec38cd9e43bd1d9c Mon Sep 17 00:00:00 2001 From: Anil Maurya Date: Fri, 8 Mar 2019 15:42:49 +0530 Subject: [PATCH] Update Changelog and bump to version 5.0.2 --- CHANGELOG.md | 11 +++++++++++ lib/aasm/version.rb | 2 +- 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3ccda8b..180bf17 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,17 @@ ## unreleased +## 5.0.2 + +* Clear failed callbacks, [#600](https://github.com/aasm/aasm/pull/600), thanks to +[nedgar](https://github.com/nedgar) +* README improvements, [#594](https://github.com/aasm/aasm/pull/594), +[#589](https://github.com/aasm/aasm/pull/589), [#587](https://github.com/aasm/aasm/pull/587), +[#597](https://github.com/aasm/aasm/pull/597), thanks to [jackscotti](https://github.com/jackscotti), [krmbzds](https://github.com/krmbzds), +[zegomesjf](https://github.com/zegomesjf), [BKSpurgeon](https://github.com/BKSpurgeon) +* Update InvalidTransition to include state_machine_name [#592](https://github.com/aasm/aasm/pull/592), thanks to [a14m](https://github.com/a14m) +* Do not add migration if model and column already exists [#586](https://github.com/aasm/aasm/pull/586), thanks to [KiranJosh](https://github.com/KiranJosh) + ## 5.0.1 * Fix failures array in transition not being reset [#383](https://github.com/aasm/aasm/issues/383) diff --git a/lib/aasm/version.rb b/lib/aasm/version.rb index 0fb1746..e99f76d 100644 --- a/lib/aasm/version.rb +++ b/lib/aasm/version.rb @@ -1,3 +1,3 @@ module AASM - VERSION = "5.0.1" + VERSION = "5.0.2" end