Skip to content

Commit cc85c78

Browse files
authored
Merge branch 'main' into update-user-stat-importer-file-set-query
2 parents 1aeea8f + 2e4dc49 commit cc85c78

File tree

6 files changed

+7
-9
lines changed

6 files changed

+7
-9
lines changed

.dassie/Gemfile

+1-2
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,7 @@ gem 'turbolinks', '~> 5'
4141
gem 'twitter-typeahead-rails', '0.11.1.pre.corejavascript'
4242
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]
4343
gem 'uglifier', '>= 1.3.0'
44-
gem 'activerecord-nulldb-adapter', git: 'https://github.com/taylorthurlow/nulldb', branch: 'fix/activerecord72-register-adapter'
45-
gem 'hydra-editor', github: 'samvera/hydra-editor', branch: 'revert_and_modernize'
44+
gem 'activerecord-nulldb-adapter', '~> 1.1'
4645

4746
group :development do
4847
gem 'better_errors' # add command line in browser when errors

.koppie/Gemfile

+1-2
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,7 @@ gem 'turbolinks', '~> 5'
4141
gem 'twitter-typeahead-rails', '0.11.1.pre.corejavascript'
4242
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]
4343
gem 'uglifier', '>= 1.3.0'
44-
gem 'activerecord-nulldb-adapter', git: 'https://github.com/taylorthurlow/nulldb', branch: 'fix/activerecord72-register-adapter'
45-
gem 'hydra-editor', github: 'samvera/hydra-editor', branch: 'revert_and_modernize'
44+
gem 'activerecord-nulldb-adapter', '~> 1.1'
4645

4746
group :development do
4847
gem 'better_errors' # add command line in browser when errors

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.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:

hyrax.gemspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ SUMMARY
5757
spec.add_dependency 'font-awesome-rails', '~> 4.2'
5858
spec.add_dependency 'google-analytics-data', '~> 0.6'
5959
spec.add_dependency 'hydra-derivatives', '~> 4.0'
60-
spec.add_dependency 'hydra-editor', '~> 6.0'
60+
spec.add_dependency 'hydra-editor', '~> 7.0'
6161
spec.add_dependency 'hydra-file_characterization', '~> 1.1'
6262
spec.add_dependency 'hydra-head', '~> 13.0'
6363
spec.add_dependency 'hydra-works', '>= 0.16'

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.2'
3+
VERSION = '5.0.3'
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.2'
2+
gem 'hyrax', '5.0.3'
33
run 'bundle install'
44
generate 'hyrax:install', '-f'

0 commit comments

Comments
 (0)