From fa1009abe4ba7729e1689b18677d008aecee61a0 Mon Sep 17 00:00:00 2001 From: Joel Hawksley Date: Tue, 1 Oct 2019 11:30:16 -0600 Subject: [PATCH] release v1.3.1 --- CHANGELOG.md | 6 ++++++ CONTRIBUTING.md | 2 +- Gemfile.lock | 2 +- actionview-component.gemspec | 2 +- 4 files changed, 9 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0a92b018b..c58f50b18 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +# v1.3.1 + +* Fix bug where rendering nested content caused an error. + + *Joel Hawksley, Aaron Patterson* + # v1.3.0 * Components are rendered with enough controller context to support rendering of partials and forms. diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 561d2d2b7..a12ea8bb4 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -32,6 +32,7 @@ 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. 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` @@ -39,7 +40,6 @@ If you are the current maintainer of this gem: 1. Bump the Gemfile and Gemfile.lock versions for an app which relies on this gem 1. Install the new gem locally 1. Test behavior locally, branch deploy, whatever needs to happen -1. Bump gem version in `actionview-component.gemspec`. 1. Make a PR to github/actionview-component. 1. Build a local gem: `gem build actionview-component.gemspec` 1. Merge github/actionview-component PR diff --git a/Gemfile.lock b/Gemfile.lock index cbb5d712f..4e09d3da4 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - actionview-component (1.3.0) + actionview-component (1.3.1) GEM remote: https://rubygems.org/ diff --git a/actionview-component.gemspec b/actionview-component.gemspec index 2151dc51e..3d8613ab4 100644 --- a/actionview-component.gemspec +++ b/actionview-component.gemspec @@ -6,7 +6,7 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) Gem::Specification.new do |spec| spec.name = "actionview-component" - spec.version = "1.3.0" + spec.version = "1.3.1" spec.authors = ["GitHub Open Source"] spec.email = ["opensource+actionview-component@github.com"]