version bump to 4.0.6

This commit is contained in:
Thorsten Böttger 2014-12-20 17:28:32 +01:00
parent eba4a6238d
commit 046dad9dfd
2 changed files with 2 additions and 2 deletions

View File

@ -5,7 +5,7 @@
* `aasm_column` has been removed. Use `aasm.attribute_name` instead
* `aasm_human_event_name` has been removed. Use `aasm.human_event_name` instead
## 4.0.5 (not yet released)
## 4.0.6
* bugfix: `false` is treated as uninitialised state (same as `nil`) (see [issue #195](https://github.com/aasm/aasm/issues/195) for details)
* bugfix: an event's `:error` callback now retrieves all arguments passed to the event (see [issue #196](https://github.com/aasm/aasm/issues/196) for details)

View File

@ -1,3 +1,3 @@
module AASM
VERSION = "4.0.5"
VERSION = "4.0.6"
end