diff --git a/CHANGELOG.md b/CHANGELOG.md index 9e981bb..f09ca09 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,18 @@ and this project adheres to [Semantic Versioning]. ## [Unreleased] +## [v1.1.2] - 2020-11-10 + +### Changed + +- [\#300](https://github.com/aaronmallen/activeinteractor/pull/300) `ActiveModel` and `ActiveSupport` v6.1 will be the + highest supported version for `ActiveInteractor` v1.1.x + +### Fixed + +- [\#300](https://github.com/aaronmallen/activeinteractor/pull/300) `ActiveInteractor::Context::Error` compatibility + with `ActiveModel` v6.1 + ## [v1.1.1] - 2020-10-21 ### Fixed @@ -219,7 +231,8 @@ and this project adheres to [Semantic Versioning]. -[Unreleased]: https://github.com/aaronmallen/activeinteractor/compare/v1.1.1...HEAD +[Unreleased]: https://github.com/aaronmallen/activeinteractor/compare/v1.1.2...HEAD +[v1.1.2]: https://github.com/aaronmallen/activeinteractor/compare/v1.1.1...v1.1.2 [v1.1.1]: https://github.com/aaronmallen/activeinteractor/compare/v1.1.0...v1.1.1 [v1.1.0]: https://github.com/aaronmallen/activeinteractor/compare/v1.0.5...v1.1.0 [v1.0.5]: https://github.com/aaronmallen/activeinteractor/compare/v1.0.4...v1.0.5 diff --git a/Gemfile.lock b/Gemfile.lock index 4252f04..efa662e 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - activeinteractor (1.1.1) + activeinteractor (1.1.2) activemodel (>= 4.2, <= 6.1) activesupport (>= 4.2, <= 6.1) diff --git a/lib/active_interactor/version.rb b/lib/active_interactor/version.rb index 6c798ee..f94f006 100644 --- a/lib/active_interactor/version.rb +++ b/lib/active_interactor/version.rb @@ -3,5 +3,5 @@ module ActiveInteractor # The ActiveInteractor version # @return [String] the ActiveInteractor version - VERSION = '1.1.1' + VERSION = '1.1.2' end