From bdf4e29293e6b99884e2a26ac9549f9303307c73 Mon Sep 17 00:00:00 2001 From: Dirkjan Ochtman Date: Mon, 8 Oct 2018 11:32:49 +0200 Subject: Bump version to 0.7.2 --- askama/Cargo.toml | 6 +++--- askama_derive/Cargo.toml | 4 ++-- askama_shared/Cargo.toml | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/askama/Cargo.toml b/askama/Cargo.toml index bcfa393..569ace7 100644 --- a/askama/Cargo.toml +++ b/askama/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "askama" -version = "0.7.1" +version = "0.7.2" authors = ["Dirkjan Ochtman "] description = "Type-safe, compiled Jinja-like templates for Rust" documentation = "https://docs.rs/askama" @@ -25,8 +25,8 @@ with-rocket = ["rocket", "askama_derive/rocket"] with-actix-web = ["actix-web", "askama_derive/actix-web", "mime_guess"] [dependencies] -askama_derive = { version = "0.7.1", path = "../askama_derive" } -askama_shared = { version = "0.7.1", path = "../askama_shared" } +askama_derive = { version = "0.7.2", path = "../askama_derive" } +askama_shared = { version = "0.7.2", path = "../askama_shared" } iron = { version = ">= 0.5, < 0.7", optional = true } rocket = { version = "0.3", optional = true } actix-web = { version = "0.7", optional = true } diff --git a/askama_derive/Cargo.toml b/askama_derive/Cargo.toml index d59f140..def1f5d 100644 --- a/askama_derive/Cargo.toml +++ b/askama_derive/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "askama_derive" -version = "0.7.1" +version = "0.7.2" authors = ["Dirkjan Ochtman "] description = "Procedural macro package for Askama" homepage = "https://github.com/djc/askama" @@ -18,7 +18,7 @@ rocket = ["askama_shared/rocket"] actix-web = ["askama_shared/actix-web"] [dependencies] -askama_shared = { version = "0.7.1", path = "../askama_shared" } +askama_shared = { version = "0.7.2", path = "../askama_shared" } nom = "4" proc-macro2 = "0.4" quote = "0.6" diff --git a/askama_shared/Cargo.toml b/askama_shared/Cargo.toml index 9106e96..c81ab9f 100644 --- a/askama_shared/Cargo.toml +++ b/askama_shared/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "askama_shared" -version = "0.7.1" +version = "0.7.2" authors = ["Dirkjan Ochtman "] description = "Shared code for Askama" homepage = "https://github.com/djc/askama" -- cgit