Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# master

# 2.18.0

* Fix auto-loading of previews (changes no longer require a server restart)

*Matt Brictson*
Expand All @@ -14,6 +16,10 @@

# 2.17.1

* Fix bug where rendering Slot with empty block resulted in error.

*Joel Hawksley*

# 2.17.0

* Slots return stripped HTML, removing leading and trailing whitespace.
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.17.1)
view_component (2.18.0)
activesupport (>= 5.0.0, < 7.0)

GEM
Expand Down
4 changes: 2 additions & 2 deletions lib/view_component/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
module ViewComponent
module VERSION
MAJOR = 2
MINOR = 17
PATCH = 1
MINOR = 18
PATCH = 0

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