Skip to content

Commit

Permalink
Merge pull request #400 from github/release-v2.14.1
Browse files Browse the repository at this point in the history
release v2.14.1
  • Loading branch information
joelhawksley committed Jul 10, 2020
2 parents ab297dd + 1bb0ae3 commit 064c1ac
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 2 deletions.
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,22 @@
# master

# 2.14.1

* Allow using `render_inline` in test when the render monkey patch is disabled with `config.view_component.render_monkey_patch_enabled = false` in versions of Rails < 6.1.

*Clément Joubert*

* Fix kwargs warnings in slotable.

Fixes:

```
view_component/lib/view_component/slotable.rb:98: warning: Using the last argument as keyword parameters is deprecated; maybe ** should be added to the call
view_component/test/app/components/slots_component.rb:18: warning: The called method `initialize' is defined here
```

*Eileen M. Uchitelle*

# 2.14.0

* Add `config.preview_paths` to support multiple locations of component preview files. Deprecate `config.preview_path`.
Expand Down
2 changes: 1 addition & 1 deletion Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: .
specs:
view_component (2.14.0)
view_component (2.14.1)
activesupport (>= 5.0.0, < 7.0)

GEM
Expand Down
2 changes: 1 addition & 1 deletion lib/view_component/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ module ViewComponent
module VERSION
MAJOR = 2
MINOR = 14
PATCH = 0
PATCH = 1

STRING = [MAJOR, MINOR, PATCH].join(".")
end
Expand Down

0 comments on commit 064c1ac

Please sign in to comment.