diff --git a/README.md b/README.md index dc163c2051..c3808241a1 100644 --- a/README.md +++ b/README.md @@ -64,7 +64,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.3.0__. If you are looking for instructions on installing a different +v2.3.1__. 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. @@ -163,7 +163,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.1.6_ new my_app -m https://raw.githubusercontent.com/samvera/hyrax/v2.3.0/template.rb +rails _5.1.6_ new my_app -m https://raw.githubusercontent.com/samvera/hyrax/v2.3.1/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 16be935f3e..00918ea384 100644 --- a/lib/hyrax/version.rb +++ b/lib/hyrax/version.rb @@ -1,3 +1,3 @@ module Hyrax - VERSION = '2.3.0'.freeze + VERSION = '2.3.1'.freeze end diff --git a/template.rb b/template.rb index 0788dac01b..1cf7a72f16 100644 --- a/template.rb +++ b/template.rb @@ -1,4 +1,4 @@ -gem 'hyrax', '2.3.0' +gem 'hyrax', '2.3.1' run 'bundle install' generate 'hyrax:install', '-f' rails_command 'db:migrate'