CHANGELOG.md in event_sourcery-0.15.0 vs CHANGELOG.md in event_sourcery-0.16.1
- old
+ new
@@ -1,13 +1,33 @@
# Change Log
+
All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/)
and this project adheres to [Semantic Versioning](http://semver.org/).
## [Unreleased]
+## [0.16.1] - 2018-01-17
+- Fixed bug with Sequel gem expecting processes_event_types to be an Array
+
+## [0.16.0] - 2018-01-02
+### Added
+- Added additional logging for retries to the ExponentialBackoffRetry error handler
+- Remove `processes_events` and related methods in favour of `process` class
+ method. You can no longer override `process` and subscribe to all events.
+ If you want to subscribe to all events you can call the `process` class
+ method with no events.
+
+ process do |event|
+ # all events will be subscribed to
+ end
+
+ process Foobar do |event|
+ # Foobar events will be subscribed to
+ end
+
## [0.15.0] - 2017-11-29
### Added
- Added in the first version of the yard documentation.
### Changed
@@ -48,11 +68,11 @@
## [0.11.2] - 2017-5-29
### Fixed
- Fixed: default poll waiter now implements `shutdown!`
-## [0.11.0] - 2017-5-29
+## [0.11.1] - 2017-5-29
### Fixed
- Use `processor.class.name` to set ESP process name
- Convert `processor_name` symbol to string explicitly
## [0.11.0] - 2017-5-26
@@ -99,5 +119,17 @@
event inserts.
### Removed
- EventSourcery no longer depends on Virtus.
- `Command` and `CommandHandler` have been removed.
+
+[Unreleased]: https://github.com/envato/event_sourcery/compare/v0.16.0...HEAD
+[0.16.0]: https://github.com/envato/event_sourcery/compare/v0.15.0...v0.16.0
+[0.15.0]: https://github.com/envato/event_sourcery/compare/v0.14.0...v0.15.0
+[0.14.0]: https://github.com/envato/event_sourcery/compare/v0.13.0...v0.14.0
+[0.13.0]: https://github.com/envato/event_sourcery/compare/v0.12.0...v0.13.0
+[0.12.0]: https://github.com/envato/event_sourcery/compare/v0.11.2...v0.12.0
+[0.11.2]: https://github.com/envato/event_sourcery/compare/v0.11.1...v0.11.2
+[0.11.1]: https://github.com/envato/event_sourcery/compare/v0.11.0...v0.11.1
+[0.11.0]: https://github.com/envato/event_sourcery/compare/v0.10.0...v0.11.0
+[0.10.0]: https://github.com/envato/event_sourcery/compare/v0.9.0...v0.10.0
+[0.9.0]: https://github.com/envato/event_sourcery/compare/v0.8.0...v0.9.0