Skip to content

Commit 10272c3

Browse files
committed
Need to bump to 5.0.3 due to pushing 5.0.2 gem built from main instead of tag
1 parent 7a2390c commit 10272c3

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

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

Lines changed: 2 additions & 2 deletions
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.2__. If you are looking for instructions on installing a different
35+
v5.0.3__. 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.2/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.3/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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# frozen_string_literal: true
22
module Hyrax
3-
VERSION = '5.0.2'
3+
VERSION = '5.0.3'
44
end

template.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# frozen_string_literal: true
2-
gem 'hyrax', '5.0.2'
2+
gem 'hyrax', '5.0.3'
33
run 'bundle install'
44
generate 'hyrax:install', '-f'

0 commit comments

Comments
 (0)