From 180696053833147a61b3348646a953e7d92ae582 Mon Sep 17 00:00:00 2001 From: Dirkjan Ochtman Date: Tue, 28 Jul 2020 11:56:04 +0200 Subject: Bump version numbers --- askama/Cargo.toml | 6 +++--- askama_derive/Cargo.toml | 2 +- askama_shared/Cargo.toml | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/askama/Cargo.toml b/askama/Cargo.toml index 4b804ad..0b3a897 100644 --- a/askama/Cargo.toml +++ b/askama/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "askama" -version = "0.10.2" +version = "0.10.3" authors = ["Dirkjan Ochtman "] description = "Type-safe, compiled Jinja-like templates for Rust" documentation = "https://docs.rs/askama" @@ -33,9 +33,9 @@ with-tide = ["askama_derive/tide"] with-warp = ["askama_derive/warp"] [dependencies] -askama_derive = { version = "0.10.2", path = "../askama_derive" } +askama_derive = { version = "0.10.3", path = "../askama_derive" } askama_escape = { version = "0.10", path = "../askama_escape" } -askama_shared = { version = "0.10.3", path = "../askama_shared", default-features = false } +askama_shared = { version = "0.10.4", path = "../askama_shared", default-features = false } mime = { version = "0.3", optional = true } mime_guess = { version = "2.0.0-alpha", optional = true } diff --git a/askama_derive/Cargo.toml b/askama_derive/Cargo.toml index 4394444..811e1dd 100644 --- a/askama_derive/Cargo.toml +++ b/askama_derive/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "askama_derive" -version = "0.10.2" +version = "0.10.3" authors = ["Dirkjan Ochtman "] description = "Procedural macro package for Askama" homepage = "https://github.com/djc/askama" diff --git a/askama_shared/Cargo.toml b/askama_shared/Cargo.toml index 40d25f0..f1f7c22 100644 --- a/askama_shared/Cargo.toml +++ b/askama_shared/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "askama_shared" -version = "0.10.3" +version = "0.10.4" authors = ["Dirkjan Ochtman "] description = "Shared code for Askama" homepage = "https://github.com/djc/askama" -- cgit