Skip to content

Commit 912c96e

Browse files
authored
Merge pull request #77 from github/release-v1.3.5
Release v1.3.5
2 parents 1ea3b7f + f7b1c25 commit 912c96e

File tree

4 files changed

+18
-3
lines changed

4 files changed

+18
-3
lines changed

CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
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.

CONTRIBUTING.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,8 @@ Here are a few things you can do that will increase the likelihood of your pull
3232
If you are the current maintainer of this gem:
3333

3434
1. 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`.
3637
1. Make sure your local dependencies are up to date: `bundle`
3738
1. Ensure that tests are green: `bundle exec rake`
3839
1. Build a test gem `GEM_VERSION=$(git describe --tags 2>/dev/null | sed 's/-/./g' | sed 's/v//') gem build actionview-component.gemspec`

Gemfile.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: .
33
specs:
4-
actionview-component (1.3.4)
4+
actionview-component (1.3.5)
55

66
GEM
77
remote: https://rubygems.org/

lib/action_view/component/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)