Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
# 0.5.0 (2025-11-06)

- AP-487: correctly declare mime type for mp3s
- dependency updates and explicit support for ruby 3.3+

# 0.4.3 (2025-11-04)

- BerkeleyLibrary::AV::Metadata::Readers:TIND now uses the /api/v1/search endpoint to retrieve records. The public /search endpoint stopped working for non-browser/human clients in the past week due to TIND changes.
Expand Down
4 changes: 2 additions & 2 deletions av_core.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ require 'berkeley_library/av/core/module_info'

Gem::Specification.new do |spec|
spec.name = BerkeleyLibrary::AV::Core::ModuleInfo::NAME
spec.author = BerkeleyLibrary::AV::Core::ModuleInfo::AUTHOR
spec.email = BerkeleyLibrary::AV::Core::ModuleInfo::AUTHOR_EMAIL
spec.authors = BerkeleyLibrary::AV::Core::ModuleInfo::AUTHORS
spec.email = BerkeleyLibrary::AV::Core::ModuleInfo::AUTHOR_EMAILS
spec.summary = BerkeleyLibrary::AV::Core::ModuleInfo::SUMMARY
spec.description = BerkeleyLibrary::AV::Core::ModuleInfo::DESCRIPTION
spec.license = BerkeleyLibrary::AV::Core::ModuleInfo::LICENSE
Expand Down
18 changes: 10 additions & 8 deletions lib/berkeley_library/av/core/module_info.rb
Original file line number Diff line number Diff line change
@@ -1,15 +1,17 @@
# frozen_string_literal: true

module BerkeleyLibrary
module AV
module Core
class ModuleInfo
NAME = 'berkeley_library-av-core'.freeze
AUTHOR = 'David Moles'.freeze
AUTHOR_EMAIL = 'dmoles@berkeley.edu'.freeze
SUMMARY = 'UC Berkeley Library audio/video core code'.freeze
DESCRIPTION = 'Gem for UC Berkeley Library shared audio/video code'.freeze
LICENSE = 'MIT'.freeze
VERSION = '0.4.3'.freeze
HOMEPAGE = 'https://github.com/BerkeleyLibrary/av-core'.freeze
NAME = 'berkeley_library-av-core'
AUTHORS = ['David Moles', 'maría a. matienzo'].freeze
AUTHOR_EMAILS = ['dmoles@berkeley.edu', 'matienzo@berkeley.edu'].freeze
SUMMARY = 'UC Berkeley Library audio/video core code'
DESCRIPTION = 'Gem for UC Berkeley Library shared audio/video code'
LICENSE = 'MIT'
VERSION = '0.5.0'
HOMEPAGE = 'https://github.com/BerkeleyLibrary/av-core'

private_class_method :new
end
Expand Down