diff --git a/CHANGELOG.md b/CHANGELOG.md index e5bd2ac..66b25b9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,21 @@ This document contains details of the various releases and their release dates. Dates are in the format `yyyy-mm-dd`. +## 2.1 - 2016-02-09 + +### Preserving entities that can't be decoded + +Decoding of invalid XML/HTML entities now results in these entities being +preserved as-is, instead of raising an EncodingError in certain places. See + and commit +5bfc2d50f2a3d387cb9fc28826d1f3d5a2d9d224 for more information. + +### New Versioning Format + +Starting with this release the patch number is dropped from the version. This +means version numbers are now in the format `MAJOR.MINOR`. See the README for +more information. + ## 2.0.0 - 2015-12-26 ### Fixed parsing HTML identifiers diff --git a/checksum/oga-2.1-java.gem.sha512 b/checksum/oga-2.1-java.gem.sha512 new file mode 100644 index 0000000..c8cf6d4 --- /dev/null +++ b/checksum/oga-2.1-java.gem.sha512 @@ -0,0 +1 @@ +78723c9b6622658b2c26c258fe7a061b8d14839b263003314dfb16a6fb5c94493c75b7a41d308e7fe9020485afde7cbe5e5c6c39acc5de6e36f615a128857cbf \ No newline at end of file diff --git a/checksum/oga-2.1.gem.sha512 b/checksum/oga-2.1.gem.sha512 new file mode 100644 index 0000000..7d10459 --- /dev/null +++ b/checksum/oga-2.1.gem.sha512 @@ -0,0 +1 @@ +a8e366ddb1dd889862c696399e558c77341ec190cceaf946f37a92802f028c5779006f6f120e343a1a6b3498174718cb1473aa45d20ad844f90f46ca05f3ee3b \ No newline at end of file diff --git a/lib/oga/version.rb b/lib/oga/version.rb index a658e0f..038e317 100644 --- a/lib/oga/version.rb +++ b/lib/oga/version.rb @@ -1,3 +1,3 @@ module Oga - VERSION = '2.0.0' + VERSION = '2.1' end # Oga