Skip to content

Commit

Permalink
Merge pull request #77 from github/release-v1.3.5
Browse files Browse the repository at this point in the history
Release v1.3.5
  • Loading branch information
joelhawksley authored Oct 17, 2019
2 parents 1ea3b7f + f7b1c25 commit 912c96e
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 3 deletions.
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,17 @@
# v1.3.5

* Re-expose `controller` method.

*Michael Emhofer, Joel Hawksley*

* Gem version numbers are now accessible through `ActionView::Component::VERSION`

*Richard Macklin*

* Fix typo in README

*ars moriendi*

# v1.3.4

* Template errors surface correct file and line number.
Expand Down
3 changes: 2 additions & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,8 @@ Here are a few things you can do that will increase the likelihood of your pull
If you are the current maintainer of this gem:

1. Create a branch for the release: `git checkout -b release-vxx.xx.xx`
1. Bump gem version in `actionview-component.gemspec`.
1. Bump gem version in `lib/action_view/component/version.rb`.
1. Add version heading/entries to `CHANGELOG.md`.
1. Make sure your local dependencies are up to date: `bundle`
1. Ensure that tests are green: `bundle exec rake`
1. Build a test gem `GEM_VERSION=$(git describe --tags 2>/dev/null | sed 's/-/./g' | sed 's/v//') gem build actionview-component.gemspec`
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:
actionview-component (1.3.4)
actionview-component (1.3.5)

GEM
remote: https://rubygems.org/
Expand Down
2 changes: 1 addition & 1 deletion lib/action_view/component/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ module Component
module VERSION
MAJOR = 1
MINOR = 3
PATCH = 4
PATCH = 5

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

0 comments on commit 912c96e

Please sign in to comment.