From 698b4ad7970f7dcd64c1ab00ac94fd3930a04d1f Mon Sep 17 00:00:00 2001 From: Robin Stocker Date: Tue, 12 Apr 2022 13:39:06 +1000 Subject: [PATCH] Version 1.1.1 --- CHANGELOG.md | 6 ++++++ lib/taglib/version.rb | 2 +- taglib-ruby.gemspec | 1 + 3 files changed, 8 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3123eda3..24762bbb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,12 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). +## 1.1.1 - 2022-04-12 +### Changed +- Fixed build time warnings with Ruby >= 2.7.0 (#85) +- Upgraded to SWIG 4.0.2 +- Fixed running tests against TagLib 1.12 + ## 1.1.0 - 2021-01-20 ### Added - Added support for CTOC and CHAP frames for ID3v2 diff --git a/lib/taglib/version.rb b/lib/taglib/version.rb index 72f5ee02..2a737dd2 100644 --- a/lib/taglib/version.rb +++ b/lib/taglib/version.rb @@ -4,7 +4,7 @@ module TagLib module Version MAJOR = 1 MINOR = 1 - PATCH = 0 + PATCH = 1 BUILD = nil STRING = [MAJOR, MINOR, PATCH, BUILD].compact.join('.') diff --git a/taglib-ruby.gemspec b/taglib-ruby.gemspec index 25dcdff1..3c946a6a 100644 --- a/taglib-ruby.gemspec +++ b/taglib-ruby.gemspec @@ -49,6 +49,7 @@ Gem::Specification.new do |s| 'README.md' ] s.files = [ + '.rubocop.yml', '.yardopts', 'CHANGELOG.md', 'Gemfile',