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

Commit 417cb92

Browse files
authored
Bump versions for Askama 0.12 (#784)
1 parent 4a7068d commit 417cb92

File tree

10 files changed

+16
-16
lines changed

10 files changed

+16
-16
lines changed

askama/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "askama"
3-
version = "0.11.2"
3+
version = "0.12.0"
44
description = "Type-safe, compiled Jinja-like templates for Rust"
55
documentation = "https://docs.rs/askama"
66
keywords = ["markup", "template", "jinja2", "html"]

askama_actix/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "askama_actix"
3-
version = "0.13.1"
3+
version = "0.14.0"
44
description = "Actix-Web integration for Askama templates"
55
documentation = "https://docs.rs/askama"
66
keywords = ["markup", "template", "jinja2", "html"]
@@ -15,7 +15,7 @@ rust-version = "1.58"
1515

1616
[dependencies]
1717
actix-web = { version = "4", default-features = false }
18-
askama = { version = "0.11.2", path = "../askama", default-features = false, features = ["with-actix-web"] }
18+
askama = { version = "0.12", path = "../askama", default-features = false, features = ["with-actix-web"] }
1919

2020
[dev-dependencies]
2121
actix-rt = { version = "2", default-features = false }

askama_axum/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "askama_axum"
3-
version = "0.1.0"
3+
version = "0.3.0"
44
edition = "2021"
55
rust-version = "1.58"
66
description = "Axum integration for Askama templates"
@@ -14,7 +14,7 @@ workspace = ".."
1414
readme = "README.md"
1515

1616
[dependencies]
17-
askama = { version = "0.11.2", path = "../askama", default-features = false, features = ["with-axum", "mime", "mime_guess"] }
17+
askama = { version = "0.12", path = "../askama", default-features = false, features = ["with-axum", "mime", "mime_guess"] }
1818
axum-core = "0.3"
1919
http = "0.2"
2020

askama_gotham/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "askama_gotham"
3-
version = "0.13.0"
3+
version = "0.14.0"
44
description = "Gotham integration for Askama templates"
55
documentation = "https://docs.rs/askama"
66
keywords = ["markup", "template", "jinja2", "html"]
@@ -14,7 +14,7 @@ edition = "2021"
1414
rust-version = "1.58"
1515

1616
[dependencies]
17-
askama = { version = "0.11.2", path = "../askama", default-features = false, features = ["with-gotham", "mime", "mime_guess"] }
17+
askama = { version = "0.12", path = "../askama", default-features = false, features = ["with-gotham", "mime", "mime_guess"] }
1818
gotham = { version = "0.7", default-features = false }
1919

2020
[dev-dependencies]

askama_hyper/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ edition = "2021"
1414
rust-version = "1.58"
1515

1616
[dependencies]
17-
askama = { version = "0.11.2", path = "../askama", default-features = false, features = ["with-hyper"] }
17+
askama = { version = "0.12", path = "../askama", default-features = false, features = ["with-hyper"] }
1818
hyper = { version = "0.14", default-features = false }
1919

2020
[dev-dependencies]

askama_mendes/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ edition = "2021"
1414
rust-version = "1.58"
1515

1616
[dependencies]
17-
askama = { version = "0.11.2", path = "../askama", default-features = false, features = ["with-mendes", "mime", "mime_guess"] }
17+
askama = { version = "0.12", path = "../askama", default-features = false, features = ["with-mendes", "mime", "mime_guess"] }
1818
mendes = "0.1.0"
1919

2020
[dev-dependencies]

askama_rocket/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "askama_rocket"
3-
version = "0.11.0"
3+
version = "0.12.0"
44
description = "Rocket integration for Askama templates"
55
documentation = "https://docs.rs/askama"
66
keywords = ["markup", "template", "jinja2", "html"]
@@ -14,7 +14,7 @@ edition = "2021"
1414
rust-version = "1.58"
1515

1616
[dependencies]
17-
askama = { version = "0.11.2", path = "../askama", default-features = false, features = ["with-rocket", "mime", "mime_guess"] }
17+
askama = { version = "0.12", path = "../askama", default-features = false, features = ["with-rocket", "mime", "mime_guess"] }
1818
rocket = { version = "0.5.0-rc.2", default-features = false }
1919

2020
[dev-dependencies]

askama_tide/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "askama_tide"
3-
version = "0.14.0"
3+
version = "0.15.0"
44
edition = "2021"
55
rust-version = "1.58"
66
description = "Tide integration for Askama templates"
@@ -13,7 +13,7 @@ workspace = ".."
1313
readme = "README.md"
1414

1515
[dependencies]
16-
askama = { version = "0.11.2", path = "../askama", default-features = false, features = ["with-tide"] }
16+
askama = { version = "0.12", path = "../askama", default-features = false, features = ["with-tide"] }
1717
tide = { version = "0.16", default-features = false }
1818

1919
[dev-dependencies]

askama_warp/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "askama_warp"
3-
version = "0.12.0"
3+
version = "0.13.0"
44
description = "Warp integration for Askama templates"
55
documentation = "https://docs.rs/askama"
66
keywords = ["markup", "template", "jinja2", "html"]
@@ -14,7 +14,7 @@ edition = "2021"
1414
rust-version = "1.58"
1515

1616
[dependencies]
17-
askama = { version = "0.11.2", path = "../askama", default-features = false, features = ["with-warp", "mime", "mime_guess"] }
17+
askama = { version = "0.12", path = "../askama", default-features = false, features = ["with-warp", "mime", "mime_guess"] }
1818
warp = { version = "0.3", default-features = false }
1919

2020
[dev-dependencies]

testing/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ serde-json = ["serde_json", "askama/serde-json"]
1313
markdown = ["comrak", "askama/markdown"]
1414

1515
[dependencies]
16-
askama = { path = "../askama", version = "0.11.2" }
16+
askama = { path = "../askama", version = "0.12" }
1717
comrak = { version = "0.16", default-features = false, optional = true }
1818
serde_json = { version = "1.0", optional = true }
1919

0 commit comments

Comments
 (0)