Skip to content

Commit

Permalink
Prepare for 0.40.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
ivanceras committed Aug 15, 2021
1 parent 1974279 commit 152915c
Show file tree
Hide file tree
Showing 7 changed files with 15 additions and 15 deletions.
10 changes: 5 additions & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "sauron"
version = "0.39.0"
version = "0.40.0"
authors = [ "Jovansonlee Cesar <[email protected]>" ]
license = "MIT"
description = "A versatile web framework and library for building client-side and/or server-side web applications"
Expand All @@ -14,10 +14,10 @@ edition = "2018"
maintenance = { status = "actively-developed" }

[dependencies]
sauron-core = { version = "0.39", path = "crates/sauron-core", default-features = false }
sauron-node-macro = { version = "0.39", path = "crates/sauron-node-macro", optional = true }
sauron-markdown = { version = "0.39", path = "crates/sauron-markdown", optional = true, default-features = false }
sauron-parse = { version = "0.39", path = "crates/sauron-parse", optional = true }
sauron-core = { version = "0.40", path = "crates/sauron-core", default-features = false }
sauron-node-macro = { version = "0.40", path = "crates/sauron-node-macro", optional = true }
sauron-markdown = { version = "0.40", path = "crates/sauron-markdown", optional = true, default-features = false }
sauron-parse = { version = "0.40", path = "crates/sauron-parse", optional = true }
cfg-if = "0.1"

[features]
Expand Down
2 changes: 1 addition & 1 deletion Changelog.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Changelog

## Unreleased
## 0.40.0
- Improve `sauron-node-macro` performance by resolving the values of `namespace` and `self_closing` tags at compile time, rather than at runtime.
- Add plugin capability of `sauron-markdown` to easily hook user define functions such as code-highlighting.
- Modify `Window::scroll_to_top` to return it as wrapped in `Cmd` to be used after an `update` call in a `Component`
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ crate-type = ["cdylib"]


[dependencies]
sauron = "0.39"
sauron = "0.40"
console_error_panic_hook = "0.1"
log = "0.4"
console_log = "0.2"
Expand Down
4 changes: 2 additions & 2 deletions crates/sauron-core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "sauron-core"
version = "0.39.0"
version = "0.40.0"
authors = [ "Jovansonlee Cesar <[email protected]>" ]
license = "MIT"
description = "An html library for building client side webapps"
Expand Down Expand Up @@ -84,7 +84,7 @@ with-dom = ["wasm-bindgen", "js-sys", "web-sys"]
wasm-bindgen-test = "0.3"
console_error_panic_hook = "0.1"
console_log = "0.2"
sauron = "0.39"
sauron = "0.40"

[dev-dependencies.web-sys]
version = "0.3"
Expand Down
6 changes: 3 additions & 3 deletions crates/sauron-markdown/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "sauron-markdown"
version = "0.39.0"
version = "0.40.0"
authors = ["Jovansonlee Cesar <[email protected]>"]
edition = "2018"
license = "MIT"
Expand All @@ -12,8 +12,8 @@ keywords = ["md", "sauron", "node"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
sauron-core = { version = "0.39", path = "../sauron-core" }
sauron-parse = { version = "0.39", path = "../sauron-parse", optional = true }
sauron-core = { version = "0.40", path = "../sauron-core" }
sauron-parse = { version = "0.40", path = "../sauron-parse", optional = true }
pulldown-cmark = { version = "0.8"}
ammonia = "3"

Expand Down
2 changes: 1 addition & 1 deletion crates/sauron-node-macro/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "sauron-node-macro"
version = "0.39.0"
version = "0.40.0"
authors = ["John-John Tedro <[email protected]>", "Jovansonlee Cesar <[email protected]>"]
license = "MIT"
description = "An html library for building client side webapps"
Expand Down
4 changes: 2 additions & 2 deletions crates/sauron-parse/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "sauron-parse"
version = "0.39.0"
version = "0.40.0"
authors = ["Jovansonlee Cesar <[email protected]>"]
edition = "2018"
license = "MIT"
Expand All @@ -12,7 +12,7 @@ keywords = ["svg", "html", "parser"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
sauron-core = { version = "0.39", features = ["with-parser"], path = "../sauron-core" }
sauron-core = { version = "0.40", features = ["with-parser"], path = "../sauron-core" }
html5ever = {version = "0.25"}
markup5ever_rcdom = { version = "0.1" }
thiserror = "1.0"
Expand Down

0 comments on commit 152915c

Please sign in to comment.