diff --git a/CHANGELOG.rdoc b/CHANGELOG.rdoc index c8c1839..0afaed1 100644 --- a/CHANGELOG.rdoc +++ b/CHANGELOG.rdoc @@ -2,10 +2,22 @@ === Unreleased -https://github.com/patsplat/plist/compare/v3.7.0...HEAD +https://github.com/patsplat/plist/compare/v3.7.1...HEAD * Your contribution here! +=== 3.7.1 (2023-12-26) + +https://github.com/patsplat/plist/compare/v3.7.0...v3.7.1 + +Bug fixes: + +* Remove runtime dependency on `base64` gem to fix Ruby 3.3 warning (https://github.com/patsplat/plist/pull/63) + +Housekeeping: + +* Add Ruby 3.3 to CI and fix CI for Ruby < 2.3 (https://github.com/patsplat/plist/pull/64) + === 3.7.0 (2023-02-21) https://github.com/patsplat/plist/compare/v3.6.0...v3.7.0 diff --git a/lib/plist/version.rb b/lib/plist/version.rb index 4d1d568..6417e8f 100644 --- a/lib/plist/version.rb +++ b/lib/plist/version.rb @@ -1,5 +1,5 @@ # encoding: utf-8 module Plist - VERSION = '3.7.0'.freeze + VERSION = '3.7.1'.freeze end