Release 1.0.2

This commit is contained in:
Yorick Peterse 2015-06-03 06:53:31 +02:00
parent 4bfeea2590
commit 5951a6f187
4 changed files with 40 additions and 1 deletions

View File

@ -3,6 +3,43 @@
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`.
## 1.0.2 - 2015-06-03
### Fix for requiring extensions on certain platforms
The loading of files has been changed to use `require` so that native extensions
are loaded properly even when a platform decides not to store in in the lib
directory.
See commit 4bfeea2590682ce7bf721c1305cb7c7a5707faac for more information.
### Better closing of HTML tags
Closing of HTML tags has been improved so Oga can parse HTML such as this:
<div>
<ul>
<li>foo
</ul>
inside div
</div>
outside div
See the following commits for more information:
* d0d597e2d93035c35b6b653d181f550d9dd522fd
* 5182d0c488759efb96d85a399de29550faea3efe
* 3c6263d8de30b91aac7c3b16b65f00407b88fc13
### Whitespace support in closing tags
Oga can now lex HTML/XML such as the following:
<p>hello<p
>
See commit d2523a1082b5ab601724e02fa4c613a9d9d9e3c6 for more information.
## 1.0.1 - 2015-05-21 ## 1.0.1 - 2015-05-21
### Encoding quotes in XML ### Encoding quotes in XML

View File

@ -0,0 +1 @@
3186afc33f26cdae216b37ce3454691f0957bba89e0c410383be8306be4834469104108aa0f47cfcc48fb256fa3773239f75445ebdd2bb802368b5174c575cc1

View File

@ -0,0 +1 @@
46d7ef4d9bb975b4df6363c5eaf3f7554bf35846068cf6e66c2f7e7a130fd19e44650333d6ba2774c4047a8e97d15373c0081d9cd461b51867c1b3429629eb7e

View File

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