diff --git a/CHANGELOG.md b/CHANGELOG.md index d63b4f29c..51d5aa7ff 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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. diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index a12ea8bb4..f9847b015 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -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` diff --git a/Gemfile.lock b/Gemfile.lock index 69ca32efc..60e809a43 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - actionview-component (1.3.4) + actionview-component (1.3.5) GEM remote: https://rubygems.org/ diff --git a/lib/action_view/component/version.rb b/lib/action_view/component/version.rb index 2fd91bb7d..ce4e10b83 100644 --- a/lib/action_view/component/version.rb +++ b/lib/action_view/component/version.rb @@ -5,7 +5,7 @@ module Component module VERSION MAJOR = 1 MINOR = 3 - PATCH = 4 + PATCH = 5 STRING = [MAJOR, MINOR, PATCH].join(".") end