From 8b195c51579785d80d88af0c5698a43fc70d4845 Mon Sep 17 00:00:00 2001 From: Dirkjan Ochtman Date: Wed, 6 Sep 2017 12:59:32 +0200 Subject: Bump version number to 0.4.0 --- 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 cf3a50e..4ff416a 100644 --- a/askama/Cargo.toml +++ b/askama/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "askama" -version = "0.3.4" +version = "0.4.0" authors = ["Dirkjan Ochtman "] 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.3.4" } -askama_shared = { version = "0.3.4", path = "../askama_shared" } +askama_derive = { path = "../askama_derive", version = "0.4.0" } +askama_shared = { version = "0.4.0", path = "../askama_shared" } iron = { version = "0.5", optional = true } rocket = { version = "0.3", optional = true } diff --git a/askama_derive/Cargo.toml b/askama_derive/Cargo.toml index 66610ea..5911d71 100644 --- a/askama_derive/Cargo.toml +++ b/askama_derive/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "askama_derive" -version = "0.3.4" +version = "0.4.0" authors = ["Dirkjan Ochtman "] description = "Procedural macro package for Askama" homepage = "https://github.com/djc/askama" @@ -17,5 +17,5 @@ iron = ["askama_shared/iron"] rocket = ["askama_shared/rocket"] [dependencies] -askama_shared = { version = "0.3.4", path = "../askama_shared" } +askama_shared = { version = "0.4.0", path = "../askama_shared" } syn = "0.11" diff --git a/askama_shared/Cargo.toml b/askama_shared/Cargo.toml index 6ad2bff..2c9a250 100644 --- a/askama_shared/Cargo.toml +++ b/askama_shared/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "askama_shared" -version = "0.3.4" +version = "0.4.0" authors = ["Dirkjan Ochtman "] workspace = ".." -- cgit