diff --git a/CHANGELOG.md b/CHANGELOG.md index 3123eda..24762bb 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 72f5ee0..2a737dd 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 25dcdff..3c946a6 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',