From 016bd2786b27876243223a2e112c059577c8167c Mon Sep 17 00:00:00 2001 From: Daniel Pierce Date: Fri, 20 Oct 2023 16:00:29 -0400 Subject: [PATCH] Prep 5.0.0.rc2 --- CONTAINERS.md | 2 +- documentation/developing-your-hyrax-based-app.md | 4 ++-- lib/hyrax/version.rb | 2 +- template.rb | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/CONTAINERS.md b/CONTAINERS.md index 6b12368ae6..8bd912cc29 100644 --- a/CONTAINERS.md +++ b/CONTAINERS.md @@ -189,7 +189,7 @@ We publish several Hyrax images to the [GitHub container registry][ghcr] under the [Samvera organization][samvera-packages]. To build them: ```sh -export HYRAX_VERSION=v5.0.0.rc1 # or desired version +export HYRAX_VERSION=v5.0.0.rc2 # or desired version git checkout hyrax-$HYRAX_VERSION docker build --target hyrax-base --tag ghcr.io/samvera/hyrax/hyrax-base:$(git rev-parse HEAD) . diff --git a/documentation/developing-your-hyrax-based-app.md b/documentation/developing-your-hyrax-based-app.md index 62b533c5ef..ff6a31f7a6 100644 --- a/documentation/developing-your-hyrax-based-app.md +++ b/documentation/developing-your-hyrax-based-app.md @@ -30,7 +30,7 @@ A Hyrax-based application includes lots of dependencies. We provide a [Docker im You can also try [Running Hyrax-based application in local VM](https://github.com/samvera/hyrax/wiki/Hyrax-Development-Guide#running-hyrax-based-application-in-local-vm) which uses Ubuntu. This document contains instructions specific to setting up an app with __Hyrax -v5.0.0.rc1__. If you are looking for instructions on installing a different +v5.0.0.rc2__. 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. @@ -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 _6.1.7.6_ new my_app -m https://raw.githubusercontent.com/samvera/hyrax/hyrax-v5.0.0.rc1/template.rb +rails _6.1.7.6_ new my_app -m https://raw.githubusercontent.com/samvera/hyrax/hyrax-v5.0.0.rc2/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 4a046bda00..4473e860a7 100644 --- a/lib/hyrax/version.rb +++ b/lib/hyrax/version.rb @@ -1,4 +1,4 @@ # frozen_string_literal: true module Hyrax - VERSION = '5.0.0.rc1' + VERSION = '5.0.0.rc2' end diff --git a/template.rb b/template.rb index 137d2b453e..2e22459ec8 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', '5.0.0.rc1' +gem 'hyrax', '5.0.0.rc2' run 'bundle install' generate 'hyrax:install', '-f'