From 417cb924ae1f94d54e2eb13ebc7e9fab91b84588 Mon Sep 17 00:00:00 2001 From: Dirkjan Ochtman Date: Fri, 3 Mar 2023 18:50:56 +0100 Subject: [PATCH] Bump versions for Askama 0.12 (#784) --- askama/Cargo.toml | 2 +- askama_actix/Cargo.toml | 4 ++-- askama_axum/Cargo.toml | 4 ++-- askama_gotham/Cargo.toml | 4 ++-- askama_hyper/Cargo.toml | 2 +- askama_mendes/Cargo.toml | 2 +- askama_rocket/Cargo.toml | 4 ++-- askama_tide/Cargo.toml | 4 ++-- askama_warp/Cargo.toml | 4 ++-- testing/Cargo.toml | 2 +- 10 files changed, 16 insertions(+), 16 deletions(-) diff --git a/askama/Cargo.toml b/askama/Cargo.toml index 95a204391..62dfe4b90 100644 --- a/askama/Cargo.toml +++ b/askama/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "askama" -version = "0.11.2" +version = "0.12.0" description = "Type-safe, compiled Jinja-like templates for Rust" documentation = "https://docs.rs/askama" keywords = ["markup", "template", "jinja2", "html"] diff --git a/askama_actix/Cargo.toml b/askama_actix/Cargo.toml index a6c124a6e..4c5dff15e 100644 --- a/askama_actix/Cargo.toml +++ b/askama_actix/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "askama_actix" -version = "0.13.1" +version = "0.14.0" description = "Actix-Web integration for Askama templates" documentation = "https://docs.rs/askama" keywords = ["markup", "template", "jinja2", "html"] @@ -15,7 +15,7 @@ rust-version = "1.58" [dependencies] actix-web = { version = "4", default-features = false } -askama = { version = "0.11.2", path = "../askama", default-features = false, features = ["with-actix-web"] } +askama = { version = "0.12", path = "../askama", default-features = false, features = ["with-actix-web"] } [dev-dependencies] actix-rt = { version = "2", default-features = false } diff --git a/askama_axum/Cargo.toml b/askama_axum/Cargo.toml index ee410a7ce..7c7d85ef4 100644 --- a/askama_axum/Cargo.toml +++ b/askama_axum/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "askama_axum" -version = "0.1.0" +version = "0.3.0" edition = "2021" rust-version = "1.58" description = "Axum integration for Askama templates" @@ -14,7 +14,7 @@ workspace = ".." readme = "README.md" [dependencies] -askama = { version = "0.11.2", path = "../askama", default-features = false, features = ["with-axum", "mime", "mime_guess"] } +askama = { version = "0.12", path = "../askama", default-features = false, features = ["with-axum", "mime", "mime_guess"] } axum-core = "0.3" http = "0.2" diff --git a/askama_gotham/Cargo.toml b/askama_gotham/Cargo.toml index 717d57e91..1e3c352b8 100644 --- a/askama_gotham/Cargo.toml +++ b/askama_gotham/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "askama_gotham" -version = "0.13.0" +version = "0.14.0" description = "Gotham integration for Askama templates" documentation = "https://docs.rs/askama" keywords = ["markup", "template", "jinja2", "html"] @@ -14,7 +14,7 @@ edition = "2021" rust-version = "1.58" [dependencies] -askama = { version = "0.11.2", path = "../askama", default-features = false, features = ["with-gotham", "mime", "mime_guess"] } +askama = { version = "0.12", path = "../askama", default-features = false, features = ["with-gotham", "mime", "mime_guess"] } gotham = { version = "0.7", default-features = false } [dev-dependencies] diff --git a/askama_hyper/Cargo.toml b/askama_hyper/Cargo.toml index dfdfbd087..113ca02c2 100644 --- a/askama_hyper/Cargo.toml +++ b/askama_hyper/Cargo.toml @@ -14,7 +14,7 @@ edition = "2021" rust-version = "1.58" [dependencies] -askama = { version = "0.11.2", path = "../askama", default-features = false, features = ["with-hyper"] } +askama = { version = "0.12", path = "../askama", default-features = false, features = ["with-hyper"] } hyper = { version = "0.14", default-features = false } [dev-dependencies] diff --git a/askama_mendes/Cargo.toml b/askama_mendes/Cargo.toml index 06fed2fd4..c4640b118 100644 --- a/askama_mendes/Cargo.toml +++ b/askama_mendes/Cargo.toml @@ -14,7 +14,7 @@ edition = "2021" rust-version = "1.58" [dependencies] -askama = { version = "0.11.2", path = "../askama", default-features = false, features = ["with-mendes", "mime", "mime_guess"] } +askama = { version = "0.12", path = "../askama", default-features = false, features = ["with-mendes", "mime", "mime_guess"] } mendes = "0.1.0" [dev-dependencies] diff --git a/askama_rocket/Cargo.toml b/askama_rocket/Cargo.toml index 4abb1122b..e15724bf0 100644 --- a/askama_rocket/Cargo.toml +++ b/askama_rocket/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "askama_rocket" -version = "0.11.0" +version = "0.12.0" description = "Rocket integration for Askama templates" documentation = "https://docs.rs/askama" keywords = ["markup", "template", "jinja2", "html"] @@ -14,7 +14,7 @@ edition = "2021" rust-version = "1.58" [dependencies] -askama = { version = "0.11.2", path = "../askama", default-features = false, features = ["with-rocket", "mime", "mime_guess"] } +askama = { version = "0.12", path = "../askama", default-features = false, features = ["with-rocket", "mime", "mime_guess"] } rocket = { version = "0.5.0-rc.2", default-features = false } [dev-dependencies] diff --git a/askama_tide/Cargo.toml b/askama_tide/Cargo.toml index 056c919b2..c92abdfa8 100644 --- a/askama_tide/Cargo.toml +++ b/askama_tide/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "askama_tide" -version = "0.14.0" +version = "0.15.0" edition = "2021" rust-version = "1.58" description = "Tide integration for Askama templates" @@ -13,7 +13,7 @@ workspace = ".." readme = "README.md" [dependencies] -askama = { version = "0.11.2", path = "../askama", default-features = false, features = ["with-tide"] } +askama = { version = "0.12", path = "../askama", default-features = false, features = ["with-tide"] } tide = { version = "0.16", default-features = false } [dev-dependencies] diff --git a/askama_warp/Cargo.toml b/askama_warp/Cargo.toml index f2f05d675..e1176daa4 100644 --- a/askama_warp/Cargo.toml +++ b/askama_warp/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "askama_warp" -version = "0.12.0" +version = "0.13.0" description = "Warp integration for Askama templates" documentation = "https://docs.rs/askama" keywords = ["markup", "template", "jinja2", "html"] @@ -14,7 +14,7 @@ edition = "2021" rust-version = "1.58" [dependencies] -askama = { version = "0.11.2", path = "../askama", default-features = false, features = ["with-warp", "mime", "mime_guess"] } +askama = { version = "0.12", path = "../askama", default-features = false, features = ["with-warp", "mime", "mime_guess"] } warp = { version = "0.3", default-features = false } [dev-dependencies] diff --git a/testing/Cargo.toml b/testing/Cargo.toml index c8326e8fb..8a68345df 100644 --- a/testing/Cargo.toml +++ b/testing/Cargo.toml @@ -13,7 +13,7 @@ serde-json = ["serde_json", "askama/serde-json"] markdown = ["comrak", "askama/markdown"] [dependencies] -askama = { path = "../askama", version = "0.11.2" } +askama = { path = "../askama", version = "0.12" } comrak = { version = "0.16", default-features = false, optional = true } serde_json = { version = "1.0", optional = true }