mirror of
https://github.com/aasm/aasm
synced 2023-03-27 23:22:41 -04:00
version bump to 4.0.0
This commit is contained in:
parent
7d32335b60
commit
8ee22da6f0
2 changed files with 3 additions and 6 deletions
|
@ -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))
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
module AASM
|
||||
VERSION = "3.4.0"
|
||||
VERSION = "4.0.0"
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue