Release 2.1
This commit is contained in:
parent
5bfc2d50f2
commit
83d0759998
15
CHANGELOG.md
15
CHANGELOG.md
|
@ -3,6 +3,21 @@
|
||||||
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.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
|
||||||
|
<https://github.com/YorickPeterse/oga/issues/143> 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
|
## 2.0.0 - 2015-12-26
|
||||||
|
|
||||||
### Fixed parsing HTML identifiers
|
### Fixed parsing HTML identifiers
|
||||||
|
|
|
@ -0,0 +1 @@
|
||||||
|
78723c9b6622658b2c26c258fe7a061b8d14839b263003314dfb16a6fb5c94493c75b7a41d308e7fe9020485afde7cbe5e5c6c39acc5de6e36f615a128857cbf
|
|
@ -0,0 +1 @@
|
||||||
|
a8e366ddb1dd889862c696399e558c77341ec190cceaf946f37a92802f028c5779006f6f120e343a1a6b3498174718cb1473aa45d20ad844f90f46ca05f3ee3b
|
|
@ -1,3 +1,3 @@
|
||||||
module Oga
|
module Oga
|
||||||
VERSION = '2.0.0'
|
VERSION = '2.1'
|
||||||
end # Oga
|
end # Oga
|
||||||
|
|
Loading…
Reference in New Issue