From 06089f7e6c26f84d116b1679384043ed738ace89 Mon Sep 17 00:00:00 2001 From: Kristina Spurgin Date: Wed, 14 Jul 2021 18:35:08 -0400 Subject: [PATCH] bump all the versions --- .ruby-version | 2 +- CHANGELOG.md | 6 ++++++ Gemfile | 7 ++++--- collectionspace-mapper.gemspec | 2 +- lib/collectionspace/mapper/version.rb | 2 +- 5 files changed, 13 insertions(+), 6 deletions(-) diff --git a/.ruby-version b/.ruby-version index fbafd6b6..e2bdf6e4 100644 --- a/.ruby-version +++ b/.ruby-version @@ -1 +1 @@ -2.7.2 \ No newline at end of file +2.7.3 \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index 12907968..62f2fe54 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,6 +10,12 @@ This project bumps the version number for any changes (including documentation u ## [Unreleased] +## [2.4.7] - 2021-07-14 +### Changed +- use ruby v2.7.3 +- use `collectionspace-client` v0.9.0 +- use `collectionspace-refcache` v0.7.6 + ## [2.4.6] - 2021-07-13 ### Changed - `mediaFileURI` is included in the list of known columns for media procedure records. diff --git a/Gemfile b/Gemfile index ac6b9b7b..85e9edc8 100644 --- a/Gemfile +++ b/Gemfile @@ -1,10 +1,11 @@ source "https://rubygems.org" - git_source(:github) {|repo_name| "https://github.com/#{repo_name}" } +ruby '2.7.3' + gem 'facets', require: false # Specify your gem's dependencies in collectionspace-mapper.gemspec -gem 'collectionspace-client', tag: 'v0.8.0', git: 'https://github.com/collectionspace/collectionspace-client.git' -gem 'collectionspace-refcache', tag: 'v0.7.4', git: 'https://github.com/collectionspace/collectionspace-refcache.git' +gem 'collectionspace-client', tag: 'v0.9.0', git: 'https://github.com/collectionspace/collectionspace-client.git' +gem 'collectionspace-refcache', tag: 'v0.7.6', git: 'https://github.com/collectionspace/collectionspace-refcache.git' gemspec diff --git a/collectionspace-mapper.gemspec b/collectionspace-mapper.gemspec index 4e20030f..5efa5a6e 100644 --- a/collectionspace-mapper.gemspec +++ b/collectionspace-mapper.gemspec @@ -13,7 +13,7 @@ Gem::Specification.new do |spec| spec.homepage = 'https://github.com/lyrasis/collectionspace-mapper' spec.license = 'MIT' - spec.required_ruby_version = '>= 2.7.2' + spec.required_ruby_version = '>= 2.7.3' # Prevent pushing this gem to RubyGems.org. To allow pushes either set the 'allowed_push_host' # to allow pushing to a single host or delete this section to allow pushing to any host. diff --git a/lib/collectionspace/mapper/version.rb b/lib/collectionspace/mapper/version.rb index e89ffd9d..51a2c027 100644 --- a/lib/collectionspace/mapper/version.rb +++ b/lib/collectionspace/mapper/version.rb @@ -1,5 +1,5 @@ module CollectionSpace module Mapper - VERSION = "2.4.6" + VERSION = "2.4.7" end end