Skip to content

Commit b89f684

Browse files
committed
Prep 5.0.0
1 parent 6151fea commit b89f684

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

CONTAINERS.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -226,7 +226,7 @@ We publish several Hyrax images to the [GitHub container registry][ghcr] under
226226
the [Samvera organization][samvera-packages]. To build them:
227227

228228
```sh
229-
export HYRAX_VERSION=v5.0.0.rc3 # or desired version
229+
export HYRAX_VERSION=v5.0.0 # or desired version
230230
git checkout hyrax-$HYRAX_VERSION
231231

232232
docker build --target hyrax-base --tag ghcr.io/samvera/hyrax/hyrax-base:$(git rev-parse HEAD) .

documentation/developing-your-hyrax-based-app.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ You can also try [Running Hyrax-based application in local VM](https://github.co
3232
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.
3333

3434
This document contains instructions specific to setting up an app with __Hyrax
35-
v5.0.0.rc3__. If you are looking for instructions on installing a different
35+
v5.0.0__. If you are looking for instructions on installing a different
3636
version, be sure to select the appropriate branch or tag from the drop-down
3737
menu above.
3838

@@ -148,7 +148,7 @@ Generate a new Rails application using the template.
148148
**NOTE:** `HYRAX_SKIP_WINGS` is needed here to avoid loading the Wings compatibility layer during the application generation process.
149149

150150
```shell
151-
HYRAX_SKIP_WINGS=true rails _6.1.7.7_ new my_app --database=postgresql -m https://raw.githubusercontent.com/samvera/hyrax/hyrax-v5.0.0.rc3/template.rb
151+
HYRAX_SKIP_WINGS=true rails _6.1.7.7_ new my_app --database=postgresql -m https://raw.githubusercontent.com/samvera/hyrax/hyrax-v5.0.0/template.rb
152152
```
153153

154154
Generating a new Rails application using Hyrax's template above takes cares of a number of steps for you, including:

lib/hyrax/version.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# frozen_string_literal: true
22
module Hyrax
3-
VERSION = '5.0.0.rc3'
3+
VERSION = '5.0.0'
44
end

template.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# frozen_string_literal: true
2-
gem 'hyrax', '5.0.0.rc3'
2+
gem 'hyrax', '5.0.0'
33
run 'bundle install'
44
generate 'hyrax:install', '-f'

0 commit comments

Comments
 (0)