diff --git a/CHANGELOG.md b/CHANGELOG.md index a093e13..4479fe6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,13 @@ Dates are in the format `yyyy-mm-dd`. ## 1.1.0 - Unreleased +### Better support for unquoted HTML attribute values + +Oga can now parse HTML such as `` and basically any +other kind of value as long as it does not contain a `>` or whitespace. + +See commit 3b633ff41c48c44893e42d3ba29ef7a5e3d70617 for more information. + ### Support for replacing of DOM nodes The newly added method `Oga::XML::Node#replace` can be used to replace an @@ -25,6 +32,12 @@ Thanks to Tero Tasanen for adding this. See commit 0b4791b277abf492ae0feb1c467dfc03aef4f2ec and for more information. +### Encoding quotes in attribute values + +When serializing elements back to XML Oga now properly encodes single/double +quotes in attribute values. See commit 074b53c18c85eaeba09557f6b0c5a6792f522c3e +for more information. + ## 1.0.3 - 2015-06-16 ### Strict XML parsing support diff --git a/checksum/oga-1.1.0-java.gem.sha512 b/checksum/oga-1.1.0-java.gem.sha512 new file mode 100644 index 0000000..bc2abb3 --- /dev/null +++ b/checksum/oga-1.1.0-java.gem.sha512 @@ -0,0 +1 @@ +979cabb88f8379103aa3dffc02a6cd5803a47a6ac5b122320324573907e81130bf56114d91a736fc1b0d11656d9952689db8ec2e3a7baf39ece20f28c1c7cfc3 \ No newline at end of file diff --git a/checksum/oga-1.1.0.gem.sha512 b/checksum/oga-1.1.0.gem.sha512 new file mode 100644 index 0000000..bc6db21 --- /dev/null +++ b/checksum/oga-1.1.0.gem.sha512 @@ -0,0 +1 @@ +30cd5f91b3db3b0638818136327077fed8a493918eba2438d0489489a17b1f58bd568f54c888e447a64b5a0de7ace706de08947fac817ac053ce6bb2f2096964 \ No newline at end of file diff --git a/lib/oga/version.rb b/lib/oga/version.rb index 1f8216c..3aa2f28 100644 --- a/lib/oga/version.rb +++ b/lib/oga/version.rb @@ -1,3 +1,3 @@ module Oga - VERSION = '1.0.3' + VERSION = '1.1.0' end # Oga