Skip to content

Commit 02fda26

Browse files
committed
prepare 0.1.0 for release
1 parent 96ec88a commit 02fda26

File tree

3 files changed

+8
-6
lines changed

3 files changed

+8
-6
lines changed

CHANGES.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
1-
# (next)
1+
# 0.1.0 (23 July 2025)
22

3+
- Update to support Ruby 3.3+
4+
- Update Rubocop & style changes
35
- Add `alma-oclc-lookup` script.
46

57
# 0.0.7.1 (24 May 2022)

berkeley_library-alma.gemspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ require 'berkeley_library/alma/module_info'
88

99
Gem::Specification.new do |spec|
1010
spec.name = BerkeleyLibrary::Alma::ModuleInfo::NAME
11-
spec.author = BerkeleyLibrary::Alma::ModuleInfo::AUTHOR
12-
spec.email = BerkeleyLibrary::Alma::ModuleInfo::AUTHOR_EMAIL
11+
spec.author = BerkeleyLibrary::Alma::ModuleInfo::AUTHORS
12+
spec.email = BerkeleyLibrary::Alma::ModuleInfo::AUTHOR_EMAILS
1313
spec.summary = BerkeleyLibrary::Alma::ModuleInfo::SUMMARY
1414
spec.description = BerkeleyLibrary::Alma::ModuleInfo::DESCRIPTION
1515
spec.license = BerkeleyLibrary::Alma::ModuleInfo::LICENSE

lib/berkeley_library/alma/module_info.rb

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@ module BerkeleyLibrary
22
module Alma
33
class ModuleInfo
44
NAME = 'berkeley_library-alma'.freeze
5-
AUTHOR = 'David Moles'.freeze
6-
AUTHOR_EMAIL = 'dmoles@berkeley.edu'.freeze
5+
AUTHORS = ['David Moles', 'maría a. matienzo'].freeze
6+
AUTHOR_EMAILS = ['dmoles@berkeley.edu', 'matienzo@berkeley.edu'].freeze
77
SUMMARY = 'Alma/Primo utilities for the UC Berkeley Library'.freeze
88
DESCRIPTION = 'A gem providing Alma/Primo-related utility code for the UC Berkeley Library'.freeze
99
LICENSE = 'MIT'.freeze
10-
VERSION = '0.0.7.1'.freeze
10+
VERSION = '0.1.0'.freeze
1111
HOMEPAGE = 'https://github.com/BerkeleyLibrary/alma'.freeze
1212
end
1313
end

0 commit comments

Comments
 (0)