From 40ccd2c365d3b4f5cf568476fab28197f6885b96 Mon Sep 17 00:00:00 2001 From: Tom Wrobel Date: Wed, 6 Nov 2024 20:55:16 +0000 Subject: [PATCH] Update version --- datacite_mds.gemspec | 7 ++++--- lib/datacite_mds/version.rb | 2 +- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/datacite_mds.gemspec b/datacite_mds.gemspec index cf3c195..41d5b47 100644 --- a/datacite_mds.gemspec +++ b/datacite_mds.gemspec @@ -6,8 +6,8 @@ require 'datacite_mds/version' Gem::Specification.new do |spec| spec.name = "datacite_mds" spec.version = DataciteMds::VERSION - spec.authors = ["Fred Heath", "Michael Davis"] - spec.email = ["michael.davis@bodleian.ox.ac.uk"] + spec.authors = ["Fred Heath", "Michael Davis", "Thomas Wrobel"] + spec.email = ["thomas.wrobel@bodleian.ox.ac.uk"] spec.summary = %q{This gem allows for Ruby client connectivity to Datacite's Metadata Store (https://mds.datacite.org/)} spec.description = %q{The MDS is a service for data publishers to mint DOIs and register associated metadata. It is aimed mainly at scientific and research data publishers. This gem allows for simple and seamless interaction with this service.} @@ -25,7 +25,8 @@ Gem::Specification.new do |spec| spec.add_development_dependency "yard" spec.add_development_dependency "travis" spec.add_development_dependency "coveralls" - + spec.add_dependency "nokogiri", "~> 1.6" + end diff --git a/lib/datacite_mds/version.rb b/lib/datacite_mds/version.rb index 066a94b..7820237 100644 --- a/lib/datacite_mds/version.rb +++ b/lib/datacite_mds/version.rb @@ -1,3 +1,3 @@ module DataciteMds - VERSION = "0.3.1" + VERSION = "0.3.2" end