summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CHANGELOG.rdoc14
-rw-r--r--lib/plist/version.rb2
2 files changed, 14 insertions, 2 deletions
diff --git a/CHANGELOG.rdoc b/CHANGELOG.rdoc
index b15798a..c8c1839 100644
--- a/CHANGELOG.rdoc
+++ b/CHANGELOG.rdoc
@@ -2,10 +2,22 @@
=== Unreleased
-https://github.com/patsplat/plist/compare/v3.6.0...HEAD
+https://github.com/patsplat/plist/compare/v3.7.0...HEAD
* Your contribution here!
+=== 3.7.0 (2023-02-21)
+
+https://github.com/patsplat/plist/compare/v3.6.0...v3.7.0
+
+New features and important changes:
+
+* Allow `Marshal.load` to be disabled for `Plist.parse_xml` (https://github.com/patsplat/plist/pull/61)
+
+Housekeeping:
+
+* Migrate from Travis CI to GitHub Actions; add Ruby 3.1 and 3.2 to CI matrix (https://github.com/patsplat/plist/pull/59)
+
=== 3.6.0 (2020-12-30)
https://github.com/patsplat/plist/compare/v3.5.0...v3.6.0
diff --git a/lib/plist/version.rb b/lib/plist/version.rb
index 936004a..4d1d568 100644
--- a/lib/plist/version.rb
+++ b/lib/plist/version.rb
@@ -1,5 +1,5 @@
# encoding: utf-8
module Plist
- VERSION = '3.6.0'.freeze
+ VERSION = '3.7.0'.freeze
end