From 7fd643bdaa2656ea9e14478e6f09761f767d1b4e Mon Sep 17 00:00:00 2001 From: Tom Johnson Date: Thu, 13 Sep 2018 14:23:54 -0700 Subject: [PATCH] Prepare release 2.0.3 Release with backported security fixes. --- README.md | 4 ++-- lib/hyrax/version.rb | 2 +- template.rb | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index afbe5d463e..c22c44ea99 100644 --- a/README.md +++ b/README.md @@ -63,7 +63,7 @@ The Samvera community is here to help. Please see our [support guide](./.github/ # Getting started This document contains instructions specific to setting up an app with __Hyrax -v2.0.2__. If you are looking for instructions on installing a different +v2.0.3__. If you are looking for instructions on installing a different version, be sure to select the appropriate branch or tag from the drop-down menu above. @@ -160,7 +160,7 @@ NOTE: The steps need to be done in order to create a new Hyrax based app. Generate a new Rails application using the template. ``` -rails _5.0.6_ new my_app -m https://raw.githubusercontent.com/samvera/hyrax/v2.0.1/template.rb +rails _5.0.6_ new my_app -m https://raw.githubusercontent.com/samvera/hyrax/v2.0.3/template.rb ``` Generating a new Rails application using Hyrax's template above takes cares of a number of steps for you, including: diff --git a/lib/hyrax/version.rb b/lib/hyrax/version.rb index 99ca56e7c0..b6aef780a6 100644 --- a/lib/hyrax/version.rb +++ b/lib/hyrax/version.rb @@ -1,3 +1,3 @@ module Hyrax - VERSION = '2.0.2'.freeze + VERSION = '2.0.3'.freeze end diff --git a/template.rb b/template.rb index 1211ab3ce5..58dcb19c8d 100644 --- a/template.rb +++ b/template.rb @@ -1,4 +1,4 @@ -gem 'hyrax', '2.0.2' +gem 'hyrax', '2.0.3' run 'bundle install' generate 'hyrax:install', '-f' rails_command 'db:migrate'