Skip to content

Commit 98de031

Browse files
committed
prepare for release of 0.3.0
1 parent 7e67e1d commit 98de031

File tree

3 files changed

+10
-8
lines changed

3 files changed

+10
-8
lines changed

CHANGES.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
1-
# 0.2.8 (next)
1+
# 0.3.0 (2025-07-23)
22

3-
- Log `HTTP_USER_AGENT`
3+
- Update to support Ruby 3.3+ and Rails 7+ exclusively.
4+
- Update Rubocop & Style changes.
5+
- Log `HTTP_USER_AGENT`.
46

57
# 0.2.7 (2022-05-25)
68

berkeley_library-logging.gemspec

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ require 'berkeley_library/logging/module_info'
1111

1212
Gem::Specification.new do |spec|
1313
spec.name = BerkeleyLibrary::Logging::ModuleInfo::NAME
14-
spec.author = BerkeleyLibrary::Logging::ModuleInfo::AUTHOR
15-
spec.email = BerkeleyLibrary::Logging::ModuleInfo::AUTHOR_EMAIL
14+
spec.author = BerkeleyLibrary::Logging::ModuleInfo::AUTHORS
15+
spec.email = BerkeleyLibrary::Logging::ModuleInfo::AUTHOR_EMAILS
1616
spec.summary = BerkeleyLibrary::Logging::ModuleInfo::SUMMARY
1717
spec.description = BerkeleyLibrary::Logging::ModuleInfo::DESCRIPTION
1818
spec.license = BerkeleyLibrary::Logging::ModuleInfo::LICENSE
@@ -24,7 +24,7 @@ Gem::Specification.new do |spec|
2424

2525
spec.required_ruby_version = ruby_version
2626

27-
rails_version = '>= 6'
27+
rails_version = '>= 7'
2828

2929
spec.add_dependency 'activesupport', rails_version
3030
spec.add_dependency 'amazing_print', '~> 1.1'

lib/berkeley_library/logging/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 Logging
33
class ModuleInfo
44
NAME = 'berkeley_library-logging'.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 = 'Opinionated Ruby/Rails logging for UC Berkeley Library'.freeze
88
DESCRIPTION = 'A gem providing shared logging code for UC Berkeley Library gems and Rails applications'.freeze
99
LICENSE = 'MIT'.freeze
10-
VERSION = '0.2.7'.freeze
10+
VERSION = '0.3.0'.freeze
1111
HOMEPAGE = 'https://github.com/BerkeleyLibrary/logging'.freeze
1212

1313
private_class_method :new

0 commit comments

Comments
 (0)