From feadb70fa14ac98083a273fd2dd442262334cb13 Mon Sep 17 00:00:00 2001 From: Daniel Pierce Date: Tue, 27 Jun 2023 14:05:47 -0400 Subject: [PATCH] Prepare release 3.6.0 --- documentation/developing-your-hyrax-based-app.md | 2 +- documentation/legacyREADME.md | 4 ++-- lib/hyrax/version.rb | 2 +- template.rb | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/documentation/developing-your-hyrax-based-app.md b/documentation/developing-your-hyrax-based-app.md index ce431d9132..469b606da7 100644 --- a/documentation/developing-your-hyrax-based-app.md +++ b/documentation/developing-your-hyrax-based-app.md @@ -125,7 +125,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.2.8.1_ new my_app -m https://raw.githubusercontent.com/samvera/hyrax/v3.5.0/template.rb +rails _5.2.8.1_ new my_app -m https://raw.githubusercontent.com/samvera/hyrax/v3.6.0/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/documentation/legacyREADME.md b/documentation/legacyREADME.md index 0ba57ae72a..ed7e83c724 100644 --- a/documentation/legacyREADME.md +++ b/documentation/legacyREADME.md @@ -50,7 +50,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 -v3.5.0__. If you are looking for instructions on installing a different +v3.6.0__. 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. @@ -159,7 +159,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.2.8.1_ new my_app -m https://raw.githubusercontent.com/samvera/hyrax/v3.5.0/template.rb +rails _5.2.8.1_ new my_app -m https://raw.githubusercontent.com/samvera/hyrax/v3.6.0/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 7fdb5ea9a2..6ae5d727dc 100644 --- a/lib/hyrax/version.rb +++ b/lib/hyrax/version.rb @@ -1,4 +1,4 @@ # frozen_string_literal: true module Hyrax - VERSION = '3.5.0' + VERSION = '3.6.0' end diff --git a/template.rb b/template.rb index cea59a3a9d..d9dc698e6b 100644 --- a/template.rb +++ b/template.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true # Hack for https://github.com/rails/rails/issues/35153 gsub_file 'Gemfile', /^gem ["']sqlite3["']$/, 'gem "sqlite3", "~> 1.3.0"' -gem 'hyrax', '3.5.0' +gem 'hyrax', '3.6.0' run 'bundle install' generate 'hyrax:install', '-f'