Skip to content

Commit

Permalink
generate the v1.1.0 release (#248)
Browse files Browse the repository at this point in the history
  • Loading branch information
aaronmallen authored Oct 4, 2020
1 parent aef7209 commit c8be2e9
Show file tree
Hide file tree
Showing 6 changed files with 45 additions and 19 deletions.
18 changes: 16 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,23 @@ and this project adheres to [Semantic Versioning].

## [Unreleased]

## [v1.1.0] - 2020-10-04

### Added

- [\#247](https://github.com/aaronmallen/activeinteractor/issues/247) Support in place callbacks

### Fixed

- [\#242](https://github.com/aaronmallen/activeinteractor/issues/242) Optional attributes are always null
- [\#243](https://github.com/aaronmallen/activeinteractor/issues/243) Nested Organizers do not rollback parent context

## [v1.0.5] - 2020-09-15

### Fixed

- [\#200](https://github.com/aaronmallen/activeinteractor/issues/200) Context attributes assigned in interactor not accessible as element within interactor
- [\#200](https://github.com/aaronmallen/activeinteractor/issues/200) Context attributes assigned in interactor not
accessible as element within interactor

## [v1.0.4] - 2020-02-11

Expand Down Expand Up @@ -200,7 +212,9 @@ and this project adheres to [Semantic Versioning].

<!-- versions -->

[Unreleased]: https://github.com/aaronmallen/activeinteractor/compare/v1.0.4...HEAD
[Unreleased]: https://github.com/aaronmallen/activeinteractor/compare/v1.1.0...HEAD
[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
[v1.0.3]: https://github.com/aaronmallen/activeinteractor/compare/v1.0.2...v1.0.3
[v1.0.2]: https://github.com/aaronmallen/activeinteractor/compare/v1.0.1...v1.0.2
Expand Down
7 changes: 5 additions & 2 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,14 @@ group :development, :test do
gem 'solargraph'
end

group :test do
gem 'simplecov'
gem 'simplecov-lcov'
end

group :doc do
gem 'github-markup'
gem 'redcarpet'
gem 'simplecov'
gem 'simplecov-lcov'
gem 'yard'
end

Expand Down
28 changes: 14 additions & 14 deletions Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: .
specs:
activeinteractor (1.0.5)
activeinteractor (1.1.0)
activemodel (>= 4.2, < 7.0)
activesupport (>= 4.2, < 7.0)

Expand Down Expand Up @@ -67,7 +67,7 @@ GEM
backport (1.1.2)
benchmark (0.1.0)
builder (3.2.4)
chef-utils (16.4.41)
chef-utils (16.5.77)
concurrent-ruby (1.1.7)
crass (1.0.6)
diff-lcs (1.4.4)
Expand Down Expand Up @@ -108,11 +108,11 @@ GEM
tomlrb
mixlib-shellout (3.1.6)
chef-utils
nio4r (2.5.3)
nio4r (2.5.4)
nokogiri (1.10.10)
mini_portile2 (~> 2.4.0)
parallel (1.19.2)
parser (2.7.1.4)
parser (2.7.1.5)
ast (~> 2.4.1)
rack (2.2.3)
rack-test (1.1.0)
Expand Down Expand Up @@ -146,15 +146,15 @@ GEM
rainbow (3.0.0)
rake (13.0.1)
redcarpet (3.5.0)
regexp_parser (1.7.1)
regexp_parser (1.8.1)
reverse_markdown (2.0.0)
nokogiri
rexml (3.2.4)
rspec (3.9.0)
rspec-core (~> 3.9.0)
rspec-expectations (~> 3.9.0)
rspec-mocks (~> 3.9.0)
rspec-core (3.9.2)
rspec-core (3.9.3)
rspec-support (~> 3.9.3)
rspec-expectations (3.9.2)
diff-lcs (>= 1.2.0, < 2.0)
Expand All @@ -163,24 +163,24 @@ GEM
diff-lcs (>= 1.2.0, < 2.0)
rspec-support (~> 3.9.0)
rspec-support (3.9.3)
rubocop (0.90.0)
rubocop (0.92.0)
parallel (~> 1.10)
parser (>= 2.7.1.1)
parser (>= 2.7.1.5)
rainbow (>= 2.2.2, < 4.0)
regexp_parser (>= 1.7)
rexml
rubocop-ast (>= 0.3.0, < 1.0)
rubocop-ast (>= 0.5.0)
ruby-progressbar (~> 1.7)
unicode-display_width (>= 1.4.0, < 2.0)
rubocop-ast (0.3.0)
parser (>= 2.7.1.4)
rubocop-ast (0.7.1)
parser (>= 2.7.1.5)
ruby-progressbar (1.10.1)
simplecov (0.19.0)
docile (~> 1.1)
simplecov-html (~> 0.11)
simplecov-html (0.12.2)
simplecov-html (0.12.3)
simplecov-lcov (0.8.0)
solargraph (0.39.15)
solargraph (0.39.17)
backport (~> 1.1)
benchmark
bundler (>= 1.17.2)
Expand All @@ -197,7 +197,7 @@ GEM
sprockets (4.0.2)
concurrent-ruby (~> 1.0)
rack (> 1, < 3)
sprockets-rails (3.2.1)
sprockets-rails (3.2.2)
actionpack (>= 4.0)
activesupport (>= 4.0)
sprockets (>= 3.0.0)
Expand Down
2 changes: 2 additions & 0 deletions lib/active_interactor/context/attributes.rb
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,8 @@ def [](name)

# Sets value of a Hash attribute in context.attributes
#
# @since 1.1.0
#
# @param name [String, Symbol] the key name of the attribute
# @param value [*] the value to be given attribute name
# @returns [*] the attribute value
Expand Down
7 changes: 7 additions & 0 deletions lib/active_interactor/organizer/interactor_interface.rb
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,13 @@ module Organizer
#
# @return [Hash{Symbol=>Proc, Symbol}] conditional options for the {ActiveInteractor::Base interactor} class
#
# @!attribute [r] callbacks
# Callbacks for the interactor_class
#
# @since 1.1.0
#
# @return [Hash{Symbol=>*}] the interactor callbacks
#
# @!attribute [r] interactor_class
# An {ActiveInteractor::Base interactor} class
#
Expand Down
2 changes: 1 addition & 1 deletion lib/active_interactor/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@
module ActiveInteractor
# The ActiveInteractor version
# @return [String] the ActiveInteractor version
VERSION = '1.0.5'
VERSION = '1.1.0'
end

0 comments on commit c8be2e9

Please sign in to comment.