Skip to content

Commit 1bae118

Browse files
committed
Update changelog.
1 parent d97c8fa commit 1bae118

File tree

1 file changed

+16
-5
lines changed

1 file changed

+16
-5
lines changed

CHANGELOG.md

Lines changed: 16 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,24 @@ Versioning](http://semver.org/spec/v2.0.0.html).
88

99
## [Unreleased]
1010

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+
1121
### Changed
1222

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`
1829
implementations have been removed.
1930

2031
## [0.2.0] - 2019-03-16

0 commit comments

Comments
 (0)