Version 0.5.15

This commit is contained in:
Pauan 2021-04-30 01:13:37 +02:00
parent 1ba7d833f3
commit 3f01f09182
2 changed files with 2 additions and 2 deletions

View File

@ -1,6 +1,6 @@
[package]
name = "dominator"
version = "0.5.14"
version = "0.5.15"
authors = ["Pauan <pauanyu+github@pm.me>"]
description = "Zero cost declarative DOM library using FRP signals"
repository = "https://github.com/Pauan/rust-dominator"

View File

@ -249,7 +249,7 @@ impl Dom {
Self::new(bindings::create_comment(intern("")).into())
}
#[deprecated(since = "0.5.14", note = "Store the data explicitly in a component struct instead")]
#[deprecated(since = "0.5.15", note = "Store the data explicitly in a component struct instead")]
#[inline]
pub fn with_state<A, F>(mut state: A, initializer: F) -> Dom
where A: 'static,