Release 2.0.0

This commit is contained in:
Yorick Peterse 2015-12-26 20:46:24 +01:00
parent 66fc4b1dfc
commit fd1570870e
4 changed files with 23 additions and 1 deletions

View File

@ -3,6 +3,26 @@
This document contains details of the various releases and their release dates. This document contains details of the various releases and their release dates.
Dates are in the format `yyyy-mm-dd`. Dates are in the format `yyyy-mm-dd`.
## 2.0.0 - 2015-12-26
### Fixed parsing HTML identifiers
HTML identifiers are now parsed correctly. This means that for the element
`<foo:bar />` the element name is now "bar" _without_ a namespace prefix ever
being set. For the element `<foo bar:baz="10" />` the attribute name is now
"bar:baz" instead of just "baz".
This particular change may break existing applications, hence the version bump
to 2.0.
See commit 66fc4b1dfcc4b651302c7582f62287d5750dcbfe for more information.
### Slightly improved performance of checking XPath booleans
Performance of checking if certain XPath values are booleans has been improved
somewhat. See commit 9bb908f8b1f6c72582ae6070d30f8bd8316ec5ad for more
information.
## 1.3.1 - 2015-09-07 ## 1.3.1 - 2015-09-07
### Race condition in the XPath compiler ### Race condition in the XPath compiler

View File

@ -0,0 +1 @@
040fe3d53c5386f578d7cd6b1be4931c05d9c6d7ff42b89ddb3936771c2d68e028ecd31449e6a448be475fc06afa210b3bb3256e4b58a9c35bb49318f905623f

View File

@ -0,0 +1 @@
3ace7512c849c62e8c6506778adb7151cf6a518e8ed76330caacbf2359791ed46cd9d6660ff57ad3060b50642bce5429d7c3f2063a6b1cf21b8cdc0e7d83e87f

View File

@ -1,3 +1,3 @@
module Oga module Oga
VERSION = '1.3.1' VERSION = '2.0.0'
end # Oga end # Oga