aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--askama/Cargo.toml4
-rw-r--r--askama_derive/Cargo.toml4
-rw-r--r--askama_shared/Cargo.toml2
3 files changed, 5 insertions, 5 deletions
diff --git a/askama/Cargo.toml b/askama/Cargo.toml
index f23bef9..604b1fe 100644
--- a/askama/Cargo.toml
+++ b/askama/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "askama"
-version = "0.6.0"
+version = "0.6.1"
authors = ["Dirkjan Ochtman <dirkjan@ochtman.nl>"]
description = "Type-safe, compiled Jinja-like templates for Rust"
documentation = "https://docs.rs/askama"
@@ -23,7 +23,7 @@ with-rocket = ["rocket", "askama_derive/rocket"]
[dependencies]
askama_derive = { path = "../askama_derive", version = "0.6.0" }
-askama_shared = { version = "0.6.0", path = "../askama_shared" }
+askama_shared = { version = "0.6.1", path = "../askama_shared" }
iron = { version = ">= 0.5, < 0.7", optional = true }
rocket = { version = "0.3", optional = true }
diff --git a/askama_derive/Cargo.toml b/askama_derive/Cargo.toml
index fed1800..afad349 100644
--- a/askama_derive/Cargo.toml
+++ b/askama_derive/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "askama_derive"
-version = "0.6.0"
+version = "0.6.1"
authors = ["Dirkjan Ochtman <dirkjan@ochtman.nl>"]
description = "Procedural macro package for Askama"
homepage = "https://github.com/djc/askama"
@@ -17,7 +17,7 @@ iron = ["askama_shared/iron"]
rocket = ["askama_shared/rocket"]
[dependencies]
-askama_shared = { version = "0.6.0", path = "../askama_shared" }
+askama_shared = { version = "0.6.1", path = "../askama_shared" }
nom = "3"
quote = "0.5"
syn = "0.13"
diff --git a/askama_shared/Cargo.toml b/askama_shared/Cargo.toml
index d1ef222..a838d4e 100644
--- a/askama_shared/Cargo.toml
+++ b/askama_shared/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "askama_shared"
-version = "0.6.0"
+version = "0.6.1"
authors = ["Dirkjan Ochtman <dirkjan@ochtman.nl>"]
description = "Shared code for Askama"
homepage = "https://github.com/djc/askama"