File tree Expand file tree Collapse file tree 4 files changed +18
-3
lines changed
lib/action_view/component Expand file tree Collapse file tree 4 files changed +18
-3
lines changed Original file line number Diff line number Diff line change 1+ # v1.3.5
2+
3+ * Re-expose ` controller ` method.
4+
5+ * Michael Emhofer, Joel Hawksley*
6+
7+ * Gem version numbers are now accessible through ` ActionView::Component::VERSION `
8+
9+ * Richard Macklin*
10+
11+ * Fix typo in README
12+
13+ * ars moriendi*
14+
115# v1.3.4
216
317* Template errors surface correct file and line number.
Original file line number Diff line number Diff line change @@ -32,7 +32,8 @@ Here are a few things you can do that will increase the likelihood of your pull
3232If you are the current maintainer of this gem:
3333
34341 . Create a branch for the release: ` git checkout -b release-vxx.xx.xx `
35- 1 . Bump gem version in ` actionview-component.gemspec ` .
35+ 1 . Bump gem version in ` lib/action_view/component/version.rb ` .
36+ 1 . Add version heading/entries to ` CHANGELOG.md ` .
36371 . Make sure your local dependencies are up to date: ` bundle `
37381 . Ensure that tests are green: ` bundle exec rake `
38391 . Build a test gem ` GEM_VERSION=$(git describe --tags 2>/dev/null | sed 's/-/./g' | sed 's/v//') gem build actionview-component.gemspec `
Original file line number Diff line number Diff line change 11PATH
22 remote: .
33 specs:
4- actionview-component (1.3.4 )
4+ actionview-component (1.3.5 )
55
66GEM
77 remote: https://rubygems.org/
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ module Component
55 module VERSION
66 MAJOR = 1
77 MINOR = 3
8- PATCH = 4
8+ PATCH = 5
99
1010 STRING = [ MAJOR , MINOR , PATCH ] . join ( "." )
1111 end
You can’t perform that action at this time.
0 commit comments