From 82d7407faaa11968eb4b8f4222c29560688f14f4 Mon Sep 17 00:00:00 2001 From: Aaron Allen Date: Wed, 21 Oct 2020 15:33:50 -0500 Subject: [PATCH] generate the v1.1.1 release --- CHANGELOG.md | 10 +++++++++- Gemfile.lock | 2 +- lib/active_interactor/version.rb | 2 +- 3 files changed, 11 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8e3560f..9e981bb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning]. ## [Unreleased] +## [v1.1.1] - 2020-10-21 + +### Fixed + +- [\#267](https://github.com/aaronmallen/activeinteractor/pull/267) Allow default attributes to propagate to + sibling/child interactors + ## [v1.1.0] - 2020-10-04 ### Added @@ -212,7 +219,8 @@ and this project adheres to [Semantic Versioning]. -[Unreleased]: https://github.com/aaronmallen/activeinteractor/compare/v1.1.0...HEAD +[Unreleased]: https://github.com/aaronmallen/activeinteractor/compare/v1.1.1...HEAD +[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 [v1.0.4]: https://github.com/aaronmallen/activeinteractor/compare/v1.0.3...v1.0.4 diff --git a/Gemfile.lock b/Gemfile.lock index f899c14..685fb31 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - activeinteractor (1.1.0) + activeinteractor (1.1.1) activemodel (>= 4.2, < 7.0) activesupport (>= 4.2, < 7.0) diff --git a/lib/active_interactor/version.rb b/lib/active_interactor/version.rb index 3257396..6c798ee 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.0' + VERSION = '1.1.1' end