diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..ab72aed --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,8 @@ +# Changelog +All notable changes to this project will be documented in this file. + +The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to Semantic Versioning. + +## 1.0.2 - 2019-09-24 +### Changed +1. Loosened json version requirement to accomodate json 2.x, which will allow this gem to work on Bundler 2.x systems, which come pre-installed with json 2.x diff --git a/hydra-role-management.gemspec b/hydra-role-management.gemspec index 2e76499..8584498 100644 --- a/hydra-role-management.gemspec +++ b/hydra-role-management.gemspec @@ -3,7 +3,7 @@ require File.expand_path('../lib/hydra/role_management/version', __FILE__) Gem::Specification.new do |gem| gem.authors = ['Justin Coyne'] - gem.email = ['justin@curationexperts.com'] + gem.email = ['jcoyne@justincoyne.com'] gem.description = 'Rails engine to do user roles in an RDBMS for hydra-head' gem.summary = 'Rails engine to do user roles in an RDBMS for hydra-head' gem.homepage = 'https://github.com/samvera/hydra-role-management' diff --git a/lib/hydra/role_management/version.rb b/lib/hydra/role_management/version.rb index e9ad56e..361924a 100644 --- a/lib/hydra/role_management/version.rb +++ b/lib/hydra/role_management/version.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true module Hydra module RoleManagement - VERSION = '1.0.1' + VERSION = '1.0.2' end end