diff --git a/askama/Cargo.toml b/askama/Cargo.toml index 907ee1741..ba4aaa60d 100644 --- a/askama/Cargo.toml +++ b/askama/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "askama" -version = "0.14.0" +version = "0.15.0" description = "Type-safe, compiled Jinja-like templates for Rust" keywords = ["markup", "template", "jinja2", "html"] categories = ["template-engine"] @@ -27,7 +27,7 @@ harness = false itoa = "1.0.11" # needed by feature "derive" -askama_macros = { version = "=0.14.0", path = "../askama_macros", default-features = false, optional = true } +askama_macros = { version = "=0.15.0", path = "../askama_macros", default-features = false, optional = true } # needed by feature "serde_json" serde = { version = "1.0", optional = true, default-features = false } diff --git a/askama_derive/Cargo.toml b/askama_derive/Cargo.toml index 07149f53a..f698bf9ee 100644 --- a/askama_derive/Cargo.toml +++ b/askama_derive/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "askama_derive" -version = "0.14.0" +version = "0.15.0" description = "Code generator of Askama templating engine" homepage = "https://github.com/askama-rs/askama" repository = "https://github.com/askama-rs/askama" @@ -19,7 +19,7 @@ name = "derive-template" harness = false [dependencies] -parser = { package = "askama_parser", version = "=0.14.0", path = "../askama_parser" } +parser = { package = "askama_parser", version = "=0.15.0", path = "../askama_parser" } basic-toml = { version = "0.1.1", optional = true } pulldown-cmark = { version = "0.13.0", optional = true, default-features = false } diff --git a/askama_escape/Cargo.toml b/askama_escape/Cargo.toml index 4b6d6c8f8..5e16f4d48 100644 --- a/askama_escape/Cargo.toml +++ b/askama_escape/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "askama_escape" -version = "0.13.0" +version = "0.14.0" description = "HTML escaping, extracted from Askama" keywords = ["html", "escaping"] categories = ["no-std", "no-std::no-alloc"] diff --git a/askama_macros/Cargo.toml b/askama_macros/Cargo.toml index 544de7546..7f386fcc9 100644 --- a/askama_macros/Cargo.toml +++ b/askama_macros/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "askama_macros" -version = "0.14.0" +version = "0.15.0" description = "Procedural macro package for Askama" homepage = "https://github.com/askama-rs/askama" repository = "https://github.com/askama-rs/askama" @@ -18,7 +18,7 @@ rustdoc-args = ["--generate-link-to-definition", "--cfg=docsrs"] proc-macro = true [dependencies] -askama_derive = { package = "askama_derive", path = "../askama_derive", version = "=0.14.0", default-features = false, features = ["external-sources", "proc-macro"] } +askama_derive = { package = "askama_derive", path = "../askama_derive", version = "=0.15.0", default-features = false, features = ["external-sources", "proc-macro"] } [features] default = ["config", "derive", "std", "urlencode"] diff --git a/askama_parser/Cargo.toml b/askama_parser/Cargo.toml index 463ed898f..ec1a154c3 100644 --- a/askama_parser/Cargo.toml +++ b/askama_parser/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "askama_parser" -version = "0.14.0" +version = "0.15.0" description = "Parser for Askama templates" documentation = "https://docs.rs/askama" keywords = ["markup", "template", "jinja2", "html"] diff --git a/bench-build/Cargo.toml b/bench-build/Cargo.toml index bb5f14f4f..294b73b6a 100644 --- a/bench-build/Cargo.toml +++ b/bench-build/Cargo.toml @@ -7,8 +7,8 @@ rust-version = "1.88" publish = false [dependencies] -askama = { path = "../askama", version = "0.14.0", default-features = false, features = ["std"] } -askama_macros = { path = "../askama_macros", version = "0.14.0", features = ["std"] } +askama = { path = "../askama", version = "0.15.0", default-features = false, features = ["std"] } +askama_macros = { path = "../askama_macros", version = "0.15.0", features = ["std"] } [features] default = [] diff --git a/examples/actix-web-app/Cargo.toml b/examples/actix-web-app/Cargo.toml index 70441cf84..c46217a4a 100644 --- a/examples/actix-web-app/Cargo.toml +++ b/examples/actix-web-app/Cargo.toml @@ -9,7 +9,7 @@ publish = false # and actix-web as your web-framework. [dependencies] actix-web = { version = "4.9.0", default-features = false, features = ["macros"] } -askama = { version = "0.14.0", path = "../../askama" } +askama = { version = "0.15.0", path = "../../askama" } tokio = { version = "1.43.0", features = ["macros", "rt-multi-thread"] } # serde and strum are used to parse (deserialize) and generate (serialize) information diff --git a/examples/axum-app/Cargo.toml b/examples/axum-app/Cargo.toml index fe16b90fb..bc1ff8785 100644 --- a/examples/axum-app/Cargo.toml +++ b/examples/axum-app/Cargo.toml @@ -8,7 +8,7 @@ publish = false # This is an example application that uses both askama as template engine, # and axum as your web-framework. [dependencies] -askama = { version = "0.14.0", path = "../../askama" } +askama = { version = "0.15.0", path = "../../askama" } axum = "0.8.1" tokio = { version = "1.43.0", features = ["macros", "rt-multi-thread"] } diff --git a/examples/poem-app/Cargo.toml b/examples/poem-app/Cargo.toml index fa43605f3..9956c66e6 100644 --- a/examples/poem-app/Cargo.toml +++ b/examples/poem-app/Cargo.toml @@ -8,7 +8,7 @@ publish = false # This is an example application that uses both askama as template engine, # and poem as your web-framework. [dependencies] -askama = { version = "0.14.0", path = "../../askama" } +askama = { version = "0.15.0", path = "../../askama" } poem = "3.1.6" tokio = { version = "1.43.0", features = ["macros", "rt-multi-thread"] } diff --git a/examples/rocket-app/Cargo.toml b/examples/rocket-app/Cargo.toml index 55a67d8e1..d16b80b33 100644 --- a/examples/rocket-app/Cargo.toml +++ b/examples/rocket-app/Cargo.toml @@ -8,7 +8,7 @@ publish = false # This is an example application that uses both askama as template engine, # and rocket as your web-framework. [dependencies] -askama = { version = "0.14.0", path = "../../askama" } +askama = { version = "0.15.0", path = "../../askama" } rocket = "0.5.1" # strum is used to parse and serialize information between web requests, diff --git a/examples/salvo-app/Cargo.toml b/examples/salvo-app/Cargo.toml index 56d8954bb..5d2e1d554 100644 --- a/examples/salvo-app/Cargo.toml +++ b/examples/salvo-app/Cargo.toml @@ -8,7 +8,7 @@ publish = false # This is an example application that uses both askama as template engine, # and salvo as your web-framework. [dependencies] -askama = { version = "0.14.0", path = "../../askama" } +askama = { version = "0.15.0", path = "../../askama" } salvo = { version = "0.78.0", default-features = false, features = ["http1", "logging", "server"] } tokio = { version = "1.43.0", features = ["macros", "rt-multi-thread"] } diff --git a/examples/warp-app/Cargo.toml b/examples/warp-app/Cargo.toml index ffb79195c..22d0647fa 100644 --- a/examples/warp-app/Cargo.toml +++ b/examples/warp-app/Cargo.toml @@ -8,7 +8,7 @@ publish = false # This is an example application that uses both askama as template engine, # and actix-web as your web-framework. [dependencies] -askama = { version = "0.14.0", path = "../../askama" } +askama = { version = "0.15.0", path = "../../askama" } http = "0.2.12" tokio = { version = "1.43.0", features = ["macros", "rt-multi-thread"] } warp = "0.3.7" diff --git a/testing-alloc/Cargo.toml b/testing-alloc/Cargo.toml index 1ac724334..269095fdf 100644 --- a/testing-alloc/Cargo.toml +++ b/testing-alloc/Cargo.toml @@ -1,13 +1,13 @@ [package] name = "askama_testing-alloc" -version = "0.14.0" +version = "0.15.0" authors = ["askama-rs developers"] edition = "2024" rust-version = "1.88" publish = false [dev-dependencies] -askama = { path = "../askama", version = "0.14.0", default-features = false, features = ["alloc", "derive"] } +askama = { path = "../askama", version = "0.15.0", default-features = false, features = ["alloc", "derive"] } assert_matches = "1.5.0" diff --git a/testing-no-std/Cargo.toml b/testing-no-std/Cargo.toml index e0be540d0..ed7beefc9 100644 --- a/testing-no-std/Cargo.toml +++ b/testing-no-std/Cargo.toml @@ -1,13 +1,13 @@ [package] name = "askama_testing-no-std" -version = "0.14.0" +version = "0.15.0" authors = ["askama-rs developers"] edition = "2024" rust-version = "1.88" publish = false [dev-dependencies] -askama = { path = "../askama", version = "0.14.0", default-features = false, features = ["derive"] } +askama = { path = "../askama", version = "0.15.0", default-features = false, features = ["derive"] } assert_matches = "1.5.0" diff --git a/testing-renamed/Cargo.toml b/testing-renamed/Cargo.toml index 705347d3d..5578fead2 100644 --- a/testing-renamed/Cargo.toml +++ b/testing-renamed/Cargo.toml @@ -1,13 +1,13 @@ [package] name = "askama_testing-renamed" -version = "0.14.0" +version = "0.15.0" authors = ["askama-rs developers"] edition = "2024" rust-version = "1.88" publish = false [dev-dependencies] -some_name = { package = "askama", path = "../askama", version = "0.14.0", default-features = false, features = ["derive"] } +some_name = { package = "askama", path = "../askama", version = "0.15.0", default-features = false, features = ["derive"] } assert_matches = "1.5.0" diff --git a/testing/Cargo.toml b/testing/Cargo.toml index 100851cdc..63c8ae066 100644 --- a/testing/Cargo.toml +++ b/testing/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "askama_testing" -version = "0.14.0" +version = "0.15.0" authors = ["askama-rs developers"] edition = "2024" rust-version = "1.88" @@ -11,7 +11,7 @@ name = "all" harness = false [dependencies] -askama = { path = "../askama", version = "0.14.0" } +askama = { path = "../askama", version = "0.15.0" } serde_json = { version = "1.0", optional = true } @@ -19,8 +19,8 @@ serde_json = { version = "1.0", optional = true } core = { package = "intentionally-empty", version = "1.0.0" } [dev-dependencies] -askama = { path = "../askama", version = "0.14.0", features = ["code-in-doc", "serde_json"] } -askama_parser = { path = "../askama_parser", version = "0.14.0" } +askama = { path = "../askama", version = "0.15.0", features = ["code-in-doc", "serde_json"] } +askama_parser = { path = "../askama_parser", version = "0.15.0" } assert_matches = "1.5.0" criterion = "0.8"