summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatt Brictson <matt@mattbrictson.com>2020-12-30 14:26:13 -0800
committerMatt Brictson <matt@mattbrictson.com>2020-12-30 14:26:13 -0800
commitce8f9ae42a114f603ea200c955e420782bffc4ad (patch)
tree0ae08b9ef4a63883ad0beb49247669e0f2603ad4
parent9b14945697801c41c936b695546f73fb5a888a71 (diff)
downloadplist-ce8f9ae42a114f603ea200c955e420782bffc4ad.tar.gz
Release 3.6.0v3.6.0
-rw-r--r--CHANGELOG.rdoc18
-rw-r--r--lib/plist/version.rb2
2 files changed, 17 insertions, 3 deletions
diff --git a/CHANGELOG.rdoc b/CHANGELOG.rdoc
index 70c0276..b15798a 100644
--- a/CHANGELOG.rdoc
+++ b/CHANGELOG.rdoc
@@ -2,11 +2,25 @@
=== Unreleased
-https://github.com/patsplat/plist/compare/v3.5.0...HEAD
+https://github.com/patsplat/plist/compare/v3.6.0...HEAD
* Your contribution here!
+
+=== 3.6.0 (2020-12-30)
+
+https://github.com/patsplat/plist/compare/v3.5.0...v3.6.0
+
+New features and important changes:
+
* Do not indent multiline string values (https://github.com/patsplat/plist/pull/54)
-* Add Ruby 2.7 and 3.0 to CI
+* Add `Plist::UnimplementedElementError` (https://github.com/patsplat/plist/pull/51)
+* Add support for text inside `<![CDATA[ ... ]]>` (https://github.com/patsplat/plist/pull/49)
+
+Housekeeping:
+
+* Add Ruby 2.7 and 3.0 to CI (https://github.com/patsplat/plist/pull/55)
+* add docker-compose for development (https://github.com/patsplat/plist/pull/47)
+* Replace `require` with `require_relative`(https://github.com/patsplat/plist/pull/52)
=== 3.5.0 (2018-12-22)
diff --git a/lib/plist/version.rb b/lib/plist/version.rb
index b3fa529..936004a 100644
--- a/lib/plist/version.rb
+++ b/lib/plist/version.rb
@@ -1,5 +1,5 @@
# encoding: utf-8
module Plist
- VERSION = '3.5.0'.freeze
+ VERSION = '3.6.0'.freeze
end