aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLibravatar Dirkjan Ochtman <dirkjan@ochtman.nl>2018-10-08 11:32:49 +0200
committerLibravatar Dirkjan Ochtman <dirkjan@ochtman.nl>2018-10-08 11:32:49 +0200
commitbdf4e29293e6b99884e2a26ac9549f9303307c73 (patch)
tree7e32f7dfbe41b9db8597a2c00234ba8305f7baa8
parentba07e63ea40243c0fa78d5937bb79050c4b4625a (diff)
downloadaskama-bdf4e29293e6b99884e2a26ac9549f9303307c73.tar.gz
askama-bdf4e29293e6b99884e2a26ac9549f9303307c73.tar.bz2
askama-bdf4e29293e6b99884e2a26ac9549f9303307c73.zip
Bump version to 0.7.2
-rw-r--r--askama/Cargo.toml6
-rw-r--r--askama_derive/Cargo.toml4
-rw-r--r--askama_shared/Cargo.toml2
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 <dirkjan@ochtman.nl>"]
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 <dirkjan@ochtman.nl>"]
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 <dirkjan@ochtman.nl>"]
description = "Shared code for Askama"
homepage = "https://github.com/djc/askama"