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