Release 0.2.2
This commit is contained in:
parent
142b467277
commit
73534375d5
|
@ -0,0 +1 @@
|
|||
d77f7f9891d29b8b16686e46f86b2ef5cfcc5a55b38f822352a275445a1fb77eee72b49b7f4747f67586bda6eb62e8878a3bb3011172508adf19ba3109747f7a
|
|
@ -0,0 +1 @@
|
|||
ca6c16656dd7fd2fefd1530845ee834eb882079bcdaca15382661f0e7e963a7a96d20a5cdfd4801ff5ae0cff98de35e6beb2306063776a4443d0867b9f8b8c97
|
|
@ -3,6 +3,19 @@
|
|||
This document contains details of the various releases and their release dates.
|
||||
Dates are in the format `yyyy-mm-dd`.
|
||||
|
||||
## 0.2.2 - 2015-03-03
|
||||
|
||||
This release fixes a bug where setting the text of an element using
|
||||
`Oga::XML::Element#inner_text=` would not set the parent element of the newly
|
||||
created text node. This would result in the following:
|
||||
|
||||
some_element.inner_text = 'foo'
|
||||
|
||||
some_element.children[0].parent # => nil
|
||||
|
||||
Here `parent` is supposed to return `some_element` instead. See commit
|
||||
142b467277dc9864df8279347ba737ddf60f4836 for more information.
|
||||
|
||||
## 0.2.1 - 2015-03-02
|
||||
|
||||
### Proper HTML serializing support for script tags
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
module Oga
|
||||
VERSION = '0.2.1'
|
||||
VERSION = '0.2.2'
|
||||
end # Oga
|
||||
|
|
Loading…
Reference in New Issue