Skip to content

Commit

Permalink
Merge pull request #4945 from samvera/release-3.0.2
Browse files Browse the repository at this point in the history
prepare release 3.0.2
  • Loading branch information
straleyb authored May 7, 2021
2 parents d3f1879 + f21b760 commit 2a12c7c
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 11 deletions.
4 changes: 2 additions & 2 deletions chart/hyrax/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ apiVersion: v2
name: hyrax
description: An open-source, Samvera-powered digital repository system
type: application
version: 0.17.0
appVersion: 3.0.1
version: 0.18.0
appVersion: 3.0.2
dependencies:
- name: fcrepo
version: 0.6.1
Expand Down
6 changes: 3 additions & 3 deletions documentation/developing-your-hyrax-based-app.md
Original file line number Diff line number Diff line change
Expand Up @@ -105,11 +105,11 @@ Starting up Redis will depend on your operating system, and may in fact already

## Rails

Hyrax requires Rails 5. We recommend the latest Rails 5.2.5 release.
Hyrax requires Rails 5. We recommend the latest Rails 5.2 release.

```
# If you don't already have Rails at your disposal...
gem install rails -v 5.2.5
gem install rails -v 5.2.6
```

### JavaScript runtime
Expand All @@ -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 _5.2.5_ new my_app -m https://raw.githubusercontent.com/samvera/hyrax/v3.0.1/template.rb
rails _5.2.6_ new my_app -m https://raw.githubusercontent.com/samvera/hyrax/v3.0.2/template.rb
```

Generating a new Rails application using Hyrax's template above takes cares of a number of steps for you, including:
Expand Down
8 changes: 4 additions & 4 deletions documentation/legacyREADME.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ The Samvera community is here to help. Please see our [support guide](./.github/
# Getting started

This document contains instructions specific to setting up an app with __Hyrax
v3.0.1__. If you are looking for instructions on installing a different
v3.0.2__. 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 @@ -139,11 +139,11 @@ Starting up Redis will depend on your operating system, and may in fact already

## Rails

Hyrax requires Rails 5. We recommend the latest Rails 5.2.5 release.
Hyrax requires Rails 5. We recommend the latest Rails 5.2 release.

```
# If you don't already have Rails at your disposal...
gem install rails -v 5.2.5
gem install rails -v 5.2.6
```

### JavaScript runtime
Expand All @@ -159,7 +159,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 _5.2.5_ new my_app -m https://raw.githubusercontent.com/samvera/hyrax/v3.0.1/template.rb
rails _5.2.6_ new my_app -m https://raw.githubusercontent.com/samvera/hyrax/v3.0.2/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 = '3.0.1'
VERSION = '3.0.2'
end
2 changes: 1 addition & 1 deletion template.rb
Original file line number Diff line number Diff line change
@@ -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', '3.0.1'
gem 'hyrax', '3.0.2'
run 'bundle install'
generate 'hyrax:install', '-f'

0 comments on commit 2a12c7c

Please sign in to comment.