Release 1.0.1

This commit is contained in:
Yorick Peterse 2015-05-21 11:42:06 +02:00
parent 2766d5f27f
commit 04948eb211
4 changed files with 16 additions and 1 deletions

View File

@ -3,6 +3,19 @@
This document contains details of the various releases and their release dates.
Dates are in the format `yyyy-mm-dd`.
## 1.0.1 - 2015-05-21
### Encoding quotes in XML
Oga no longer encodes single/double quotes as XML entities when serializing a
document back to XML. This ensures that input such as `<foo>a"b</foo>` doesn't
get turned into `<foo>a&quot;b</foo>`.
### HTML Entity Encoding
HTML entities are now generated using `pack('U*')` instead of `pack('U')`
ensuring the correct characters/codepoints are produced.
## 1.0.0 - 2015-05-20
This marks the first stable release (API wise) for Oga. It's been quite the ride

View File

@ -0,0 +1 @@
ff8de4f94210f149ec0eee38f436f4ece68a204b8fdeb062d54275ff3237be1251e265159048ae8859bd4058e4b8a13aeb765c71b2d33ee11cde3eeed08dc6b2

View File

@ -0,0 +1 @@
cddad871b652fc12c82017da7902e11513411c59cc91a55937e8bd7e7006390a46c5ef8839869e955c857039f0931bf6d2eb2b896d59c7a64314e40aa8fc5389

View File

@ -1,3 +1,3 @@
module Oga
VERSION = '1.0.0'
VERSION = '1.0.1'
end # Oga