@@ -8,13 +8,24 @@ Versioning](http://semver.org/spec/v2.0.0.html).
8
8
9
9
## [ Unreleased]
10
10
11
+ ### Added
12
+
13
+ - Most types now implement ` Send ` . (#53 )
14
+ - All tags now support the ARIA ` role ` attribute. (#47 )
15
+ - The ` text!() ` macro now accepts expressions as value arguments. (#48 )
16
+ - You can now create "unsafe" text nodes with the ` unsafe_text!() ` macro, which
17
+ won't be quoted at all when stringifying, even if they contain HTML tags. This
18
+ is a meaningless distinction when creating DOM nodes, however, and unsafe text
19
+ nodes will behave like normal text nodes in this case. (#39 )
20
+
11
21
### Changed
12
22
13
- - Attribute type conversion is now using the newly stabilised ` TryFrom ` instead
14
- of ` From ` , to avoid relying on panicking ` From ` implementations to detect
15
- conversion errors, though the conversions inside the macro will still panic if
16
- they fail. The appropriate ` TryFrom ` implementations have been added to
17
- ` Class ` , ` Id ` , ` SpacedList ` and ` SpacedSet ` , and the corresponding ` From `
23
+ - Text in attributes are quoted less aggressively when stringified. (#26 , #49 )
24
+ - Attribute type conversion is now using the recently stabilised ` TryFrom `
25
+ instead of ` From ` , to avoid relying on panicking ` From ` implementations to
26
+ detect conversion errors, though the conversions inside the macro will still
27
+ panic if they fail. The appropriate ` TryFrom ` implementations have been added
28
+ to ` Class ` , ` Id ` , ` SpacedList ` and ` SpacedSet ` , and the corresponding ` From `
18
29
implementations have been removed.
19
30
20
31
## [ 0.2.0] - 2019-03-16
0 commit comments