aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLibravatar Dirkjan Ochtman <dirkjan@ochtman.nl>2018-04-18 09:43:15 +0200
committerLibravatar Dirkjan Ochtman <dirkjan@ochtman.nl>2018-04-18 09:43:15 +0200
commitf0bf7e2056d44ee3a60f7dae6d562912cc6efdbb (patch)
tree17717ac0a9a619cc13fb2e302b5971bb59d7fec5
parent8d8374a10f09729b403f3519a7bceac919c484c3 (diff)
downloadaskama-f0bf7e2056d44ee3a60f7dae6d562912cc6efdbb.tar.gz
askama-f0bf7e2056d44ee3a60f7dae6d562912cc6efdbb.tar.bz2
askama-f0bf7e2056d44ee3a60f7dae6d562912cc6efdbb.zip
Version bump to 0.6.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 604b1fe..18a03b2 100644
--- a/askama/Cargo.toml
+++ b/askama/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "askama"
-version = "0.6.1"
+version = "0.6.2"
authors = ["Dirkjan Ochtman <dirkjan@ochtman.nl>"]
description = "Type-safe, compiled Jinja-like templates for Rust"
documentation = "https://docs.rs/askama"
@@ -22,8 +22,8 @@ with-iron = ["iron", "askama_derive/iron"]
with-rocket = ["rocket", "askama_derive/rocket"]
[dependencies]
-askama_derive = { path = "../askama_derive", version = "0.6.0" }
-askama_shared = { version = "0.6.1", path = "../askama_shared" }
+askama_derive = { path = "../askama_derive", version = "0.6.2" }
+askama_shared = { version = "0.6.2", 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 afad349..0ce325f 100644
--- a/askama_derive/Cargo.toml
+++ b/askama_derive/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "askama_derive"
-version = "0.6.1"
+version = "0.6.2"
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.1", path = "../askama_shared" }
+askama_shared = { version = "0.6.2", path = "../askama_shared" }
nom = "3"
quote = "0.5"
syn = "0.13"
diff --git a/askama_shared/Cargo.toml b/askama_shared/Cargo.toml
index a838d4e..78f9ee5 100644
--- a/askama_shared/Cargo.toml
+++ b/askama_shared/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "askama_shared"
-version = "0.6.1"
+version = "0.6.2"
authors = ["Dirkjan Ochtman <dirkjan@ochtman.nl>"]
description = "Shared code for Askama"
homepage = "https://github.com/djc/askama"