From 1e476030410eebd67b14bd7f8bf904c9823b375b Mon Sep 17 00:00:00 2001 From: tamsin johnson Date: Wed, 24 Mar 2021 13:05:19 -0700 Subject: [PATCH] prepare release 3.0.0 --- chart/hyrax/Chart.yaml | 2 +- documentation/developing-your-hyrax-based-app.md | 4 ++-- lib/hyrax/version.rb | 2 +- template.rb | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/chart/hyrax/Chart.yaml b/chart/hyrax/Chart.yaml index d81ca26d6a..21020a5f89 100644 --- a/chart/hyrax/Chart.yaml +++ b/chart/hyrax/Chart.yaml @@ -3,7 +3,7 @@ name: hyrax description: An open-source, Samvera-powered digital repository system type: application version: 0.6.0 -appVersion: 3.0.0-rc4 +appVersion: 3.0.0 dependencies: - name: fcrepo version: 0.6.0 diff --git a/documentation/developing-your-hyrax-based-app.md b/documentation/developing-your-hyrax-based-app.md index 4d244eda0b..774baa903c 100644 --- a/documentation/developing-your-hyrax-based-app.md +++ b/documentation/developing-your-hyrax-based-app.md @@ -30,7 +30,7 @@ A Hyrax-based application includes lots of dependencies. We provide a [Docker im You can also try [Running Hyrax-based application in local VM](https://github.com/samvera/hyrax/wiki/Hyrax-Development-Guide#running-hyrax-based-application-in-local-vm) which uses Ubuntu. This document contains instructions specific to setting up an app with __Hyrax -v3.0.0-rc4__. If you are looking for instructions on installing a different +v3.0.0__. 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. @@ -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.4.4_ new my_app -m https://raw.githubusercontent.com/samvera/hyrax/v3.0.0-rc4/template.rb +rails _5.2.4.4_ new my_app -m https://raw.githubusercontent.com/samvera/hyrax/v3.0.0/template.rb ``` Generating a new Rails application using Hyrax's template above takes cares of a number of steps for you, including: diff --git a/lib/hyrax/version.rb b/lib/hyrax/version.rb index 488bb9115d..e78352a3e4 100644 --- a/lib/hyrax/version.rb +++ b/lib/hyrax/version.rb @@ -1,4 +1,4 @@ # frozen_string_literal: true module Hyrax - VERSION = '3.0.0-rc4' + VERSION = '3.0.0' end diff --git a/template.rb b/template.rb index 9c943af919..d9ab045098 100644 --- a/template.rb +++ b/template.rb @@ -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.0-rc4' +gem 'hyrax', '3.0.0' run 'bundle install' generate 'hyrax:install', '-f'