Skip to content

Commit

Permalink
Merge pull request #6716 from samvera/prep-5.0.0.rc3
Browse files Browse the repository at this point in the history
Prep 5.0.0.rc3
  • Loading branch information
dlpierce committed Feb 23, 2024
2 parents 36766e7 + e3c3d10 commit e9141b8
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion CONTAINERS.md
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,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.rc2 # or desired version
export HYRAX_VERSION=v5.0.0.rc3 # or desired version
git checkout hyrax-$HYRAX_VERSION

docker build --target hyrax-base --tag ghcr.io/samvera/hyrax/hyrax-base:$(git rev-parse HEAD) .
Expand Down
4 changes: 2 additions & 2 deletions documentation/developing-your-hyrax-based-app.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ You can also try [Running Hyrax-based application in local VM](https://github.co
During development, running only the dependent services in a container environment may be beneficial. This avoids potential headaches concerning file permissions and eases the use of debugging tools. The application generation instructions below use [Lando](https://lando.dev) to achieve this setup.

This document contains instructions specific to setting up an app with __Hyrax
v5.0.0.rc2__. If you are looking for instructions on installing a different
v5.0.0.rc3__. 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.

Expand Down Expand Up @@ -143,7 +143,7 @@ These instructions assume the use of [Lando](https://lando.dev) and [Docker](htt
Generate a new Rails application using the template.

```shell
rails _6.1.7.6_ new my_app --database=postgresql -m https://raw.githubusercontent.com/samvera/hyrax/hyrax-v5.0.0.rc2/template.rb
rails _6.1.7.6_ new my_app --database=postgresql -m https://raw.githubusercontent.com/samvera/hyrax/hyrax-v5.0.0.rc3/template.rb
```

Generating a new Rails application using Hyrax's template above takes cares of a number of steps for you, including:
Expand Down
2 changes: 1 addition & 1 deletion lib/hyrax/version.rb
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# frozen_string_literal: true
module Hyrax
VERSION = '5.0.0.rc2'
VERSION = '5.0.0.rc3'
end
2 changes: 1 addition & 1 deletion template.rb
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# frozen_string_literal: true
gem 'hyrax', '5.0.0.rc2'
gem 'hyrax', '5.0.0.rc3'
run 'bundle install'
generate 'hyrax:install', '-f'

0 comments on commit e9141b8

Please sign in to comment.