diff --git a/CHANGELOG.rdoc b/CHANGELOG.rdoc index 0afaed1..4db84ab 100644 --- a/CHANGELOG.rdoc +++ b/CHANGELOG.rdoc @@ -2,10 +2,23 @@ === Unreleased -https://github.com/patsplat/plist/compare/v3.7.1...HEAD +https://github.com/patsplat/plist/compare/v3.7.2...HEAD * Your contribution here! +=== 3.7.2 (2024-12-26) + +https://github.com/patsplat/plist/compare/v3.7.1...v3.7.2 + +Bug fixes: + +* Fix frozen string literal warnings on Ruby 3.4 (https://github.com/patsplat/plist/pull/65) + +Housekeeping: + +* Add Ruby 3.4 to CI (https://github.com/patsplat/plist/pull/66) +* Pin test-unit gem to ensure CI works on Ruby 1.9 (https://github.com/patsplat/plist/pull/67) + === 3.7.1 (2023-12-26) https://github.com/patsplat/plist/compare/v3.7.0...v3.7.1 diff --git a/lib/plist/version.rb b/lib/plist/version.rb index 6417e8f..8715acf 100644 --- a/lib/plist/version.rb +++ b/lib/plist/version.rb @@ -1,5 +1,5 @@ # encoding: utf-8 module Plist - VERSION = '3.7.1'.freeze + VERSION = '3.7.2'.freeze end