Skip to content
This repository was archived by the owner on Mar 11, 2025. It is now read-only.

Commit d89758c

Browse files
committed
Bump version numbers to 0.9.0
1 parent ca6c72e commit d89758c

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

askama/Cargo.toml

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "askama"
3-
version = "0.8.0"
3+
version = "0.9.0"
44
authors = ["Dirkjan Ochtman <[email protected]>"]
55
description = "Type-safe, compiled Jinja-like templates for Rust"
66
documentation = "https://docs.rs/askama"
@@ -30,9 +30,9 @@ with-actix-web = ["actix-web", "askama_derive/actix-web", "mime", "mime_guess",
3030
with-gotham = ["gotham", "askama_derive/gotham", "hyper", "mime", "mime_guess"]
3131

3232
[dependencies]
33-
askama_derive = { version = "0.8.0", path = "../askama_derive" }
34-
askama_escape = { version = "0.2.0", path = "../askama_escape" }
35-
askama_shared = { version = "0.8.0", path = "../askama_shared", default-features = false }
33+
askama_derive = { version = "0.9.0", path = "../askama_derive" }
34+
askama_escape = { version = "0.3.0", path = "../askama_escape" }
35+
askama_shared = { version = "0.9.0", path = "../askama_shared", default-features = false }
3636
iron = { version = ">= 0.5, < 0.7", optional = true }
3737
rocket = { version = "0.4", optional = true }
3838
actix-web = { version = "2", optional = true }

askama_derive/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "askama_derive"
3-
version = "0.8.0"
3+
version = "0.9.0"
44
authors = ["Dirkjan Ochtman <[email protected]>"]
55
description = "Procedural macro package for Askama"
66
homepage = "https://github.com/djc/askama"
@@ -19,7 +19,7 @@ actix-web = []
1919
gotham = []
2020

2121
[dependencies]
22-
askama_shared = { version = "0.8", path = "../askama_shared" }
22+
askama_shared = { version = "0.9", path = "../askama_shared" }
2323
# default for features for nom don't work result in linker errors:
2424
# https://github.com/rust-lang/rust/issues/62146
2525
nom = { version = "5", default-features = false, features = ["std"] }

askama_escape/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "askama_escape"
3-
version = "0.2.0"
3+
version = "0.3.0"
44
authors = ["Dirkjan Ochtman <[email protected]>"]
55
description = "Optimized HTML escaping code, extracted from Askama"
66
documentation = "https://docs.rs/askama_escape"

askama_shared/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "askama_shared"
3-
version = "0.8.0"
3+
version = "0.9.0"
44
authors = ["Dirkjan Ochtman <[email protected]>"]
55
description = "Shared code for Askama"
66
homepage = "https://github.com/djc/askama"
@@ -16,7 +16,7 @@ json = ["serde", "serde_json"]
1616
yaml = ["serde", "serde_yaml"]
1717

1818
[dependencies]
19-
askama_escape = { version = "0.2.0", path = "../askama_escape" }
19+
askama_escape = { version = "0.3.0", path = "../askama_escape" }
2020
humansize = { version = "1.1.0", optional = true }
2121
num-traits = { version = "0.2.6", optional = true }
2222
serde = { version = "1.0", optional = true, features = ["derive"] }

0 commit comments

Comments
 (0)