From 8ee22da6f04ff87ab6303d77215504bb904b05df Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thorsten=20B=C3=B6ttger?= Date: Sat, 15 Nov 2014 17:45:35 +0100 Subject: [PATCH] version bump to 4.0.0 --- CHANGELOG.md | 7 ++----- lib/aasm/version.rb | 2 +- 2 files changed, 3 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ca5e24d..7a49ebe 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,7 +1,8 @@ # CHANGELOG -## 4.0.0 (not yet released) +## 4.0.0 + * support `if` and `unless` guard syntax: (see [issue #179](https://github.com/aasm/aasm/issues/179) and [issue #181](https://github.com/aasm/aasm/issues/181)), thanks to [@bigtunacan](https://github.com/bigtunacan) * may configure to not allow direct assignment for persisted AASM models (see [issue #53](https://github.com/aasm/aasm/issues/53)) * **DSL change**: callbacks don't require `to_state` parameter anymore, but still support it (closing issues @@ -20,10 +21,6 @@ * **DSL change**: renamed permissible states and events to permitted states events * removed deprecated methods (mostly the ones prefixed with `aasm_`) -## 3.5.0 (not yet released) - - * support `if` and `unless` guard syntax: (see [issue #179](https://github.com/aasm/aasm/issues/179) and [issue #181](https://github.com/aasm/aasm/issues/181)), thanks to [@bigtunacan](https://github.com/bigtunacan) - ## 3.4.0 * allow retrieving the current event (`aasm.current_event`) (see [issue #159](https://github.com/aasm/aasm/issues/159) and [issue #168](https://github.com/aasm/aasm/issues/168)) diff --git a/lib/aasm/version.rb b/lib/aasm/version.rb index 5e55fd7..64d754b 100644 --- a/lib/aasm/version.rb +++ b/lib/aasm/version.rb @@ -1,3 +1,3 @@ module AASM - VERSION = "3.4.0" + VERSION = "4.0.0" end