Skip to content

Commit 351e32b

Browse files
authored
Merge pull request #6751 from samvera/release-5.0.1
prepare release 5.0.1
2 parents 3f7eff0 + 654ad21 commit 351e32b

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

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

+4-4
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__. If you are looking for instructions on installing a different
35+
v5.0.1__. 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

@@ -130,7 +130,7 @@ Rails requires that you have a JavaScript runtime installed (e.g. nodejs or ruby
130130
Create a new Hyrax-based application by following these steps in order.
131131

132132
**NOTE:** Starting with Hyrax v5, the generated application will use [Valkyrie](https://github.com/samvera/valkyrie) for repository persistence.
133-
Use of [ActiveFedora](https://github.com/samvera/active_fedora) (instead of Valkyrie) is deprecated, but it should still be possible to reconfigure the generated application to use it.
133+
Use of [ActiveFedora](https://github.com/samvera/active_fedora) (instead of Valkyrie) is deprecated, but it should still be possible to reconfigure the generated application to use it.
134134

135135
### Development Prerequisites
136136

@@ -145,10 +145,10 @@ These instructions assume the use of [Lando](https://lando.dev) and [Docker](htt
145145

146146
Generate a new Rails application using the template.
147147

148-
**NOTE:** `HYRAX_SKIP_WINGS` is needed here to avoid loading the Wings compatibility layer during the application generation process.
148+
**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/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.1/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'
3+
VERSION = '5.0.1'
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'
2+
gem 'hyrax', '5.0.1'
33
run 'bundle install'
44
generate 'hyrax:install', '-f'

0 commit comments

Comments
 (0)