CHANGELOG.md in finite_machine-0.11.3 vs CHANGELOG.md in finite_machine-0.12.0
- old
+ new
@@ -1,7 +1,34 @@
# Change Log
+## [v0.12.0] - 2018-11-11
+
+### Added
+* Add concurrent-ruby as dependency
+* Add FiniteMachine#new for declaring state machines
+* Add Observer#cancel_event for cancelling event transitions in callbacks, instead of using callback return value
+* Add Const for declaring unique machine constants
+* Add :auto_methods configuration option for disabling automatic conversion of event names into methods
+
+### Changed
+* Change gemspec to require Ruby >= 2.0
+* Change FiniteMachine#define to create machine class instances
+* Change EventsChain to EventsMap and use Concurrent::Map for holding event transitions
+* Change Hooks to use Concurrent::Map for storing callbacks
+* Change MessageQueue to use mutex to synchronize access
+* Change StateParser to remove internal state and use class methods instead
+* Change Observer to create callbacks queue on demand
+* Change :any key to be a unique constant ANY_EVENT and ANY_STATE
+* Change #event_names to #events for retrieving all events
+* Remove thread synchronization from AsyncCall, TransitinEvent, HookEvent, DSL, Hooks, TransitionBuilder, ChoiceMerger objects
+* Remove #async call from StateMachine
+* Remove #target, #alias_target, #callbacks, #events and #handlers calls from DSL
+
+### Fixed
+* Fix StateParser to raise error without nil
+* Fix to rollback to current state when an error occurs
+
## [v0.11.3] - 2016-03-04
### Added
* Add performance tests & memory usage benchmarks
@@ -248,9 +275,16 @@
* Extend threadable accessors
### Fixed
* Fix bug - callback event object returns correct from state
+## [v0.1.0] - 2014-02-09
+
+## [v0.0.1] - 2014-01-10
+
+* Initial release
+
+[v0.12.0]: https://github.com/peter-murach/finite_machine/compare/v0.11.3...v0.12.0
[v0.11.3]: https://github.com/peter-murach/finite_machine/compare/v0.11.2...v0.11.3
[v0.11.2]: https://github.com/peter-murach/finite_machine/compare/v0.11.1...v0.11.2
[v0.11.1]: https://github.com/peter-murach/finite_machine/compare/v0.11.0...v0.11.1
[v0.11.0]: https://github.com/peter-murach/finite_machine/compare/v0.10.2...v0.11.0
[v0.10.2]: https://github.com/peter-murach/finite_machine/compare/v0.10.1...v0.10.2