From b0008ff7d1289fa09668518d440f13dcb56154e5 Mon Sep 17 00:00:00 2001 From: Dirkjan Ochtman Date: Mon, 23 Jul 2018 14:04:57 +0100 Subject: Bump versions to 0.7.1 --- 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 1e7f1ec..76d8f4c 100644 --- a/askama/Cargo.toml +++ b/askama/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "askama" -version = "0.7.0" +version = "0.7.1" 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 = { path = "../askama_derive", version = "0.7.0" } -askama_shared = { version = "0.7.0", path = "../askama_shared" } +askama_derive = { path = "../askama_derive", version = "0.7.1" } +askama_shared = { version = "0.7.1", 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 774fb51..cefe35f 100644 --- a/askama_derive/Cargo.toml +++ b/askama_derive/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "askama_derive" -version = "0.7.0" +version = "0.7.1" 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.0", path = "../askama_shared" } +askama_shared = { version = "0.7.1", 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 5b93404..a206da6 100644 --- a/askama_shared/Cargo.toml +++ b/askama_shared/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "askama_shared" -version = "0.7.0" +version = "0.7.1" authors = ["Dirkjan Ochtman "] description = "Shared code for Askama" homepage = "https://github.com/djc/askama" -- cgit