From bd94bf2d01d1a46776c0d219df70b893c661eac5 Mon Sep 17 00:00:00 2001 From: Dirkjan Ochtman Date: Sun, 5 Mar 2017 19:56:35 +0100 Subject: Bump version to 0.2.1 --- Cargo.lock | 10 +++++----- askama/Cargo.toml | 2 +- askama_derive/Cargo.toml | 4 ++-- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 5aabfe6..9505659 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2,13 +2,13 @@ name = "askama_testing" version = "0.1.0" dependencies = [ - "askama 0.2.0", - "askama_derive 0.2.0", + "askama 0.2.1", + "askama_derive 0.2.1", ] [[package]] name = "askama" -version = "0.2.0" +version = "0.2.1" dependencies = [ "nom 2.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "syn 0.11.8 (registry+https://github.com/rust-lang/crates.io-index)", @@ -16,9 +16,9 @@ dependencies = [ [[package]] name = "askama_derive" -version = "0.2.0" +version = "0.2.1" dependencies = [ - "askama 0.2.0", + "askama 0.2.1", "syn 0.11.8 (registry+https://github.com/rust-lang/crates.io-index)", ] diff --git a/askama/Cargo.toml b/askama/Cargo.toml index 5b11224..9937eaa 100644 --- a/askama/Cargo.toml +++ b/askama/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "askama" -version = "0.2.0" +version = "0.2.1" authors = ["Dirkjan Ochtman "] description = "Type-safe, compiled Jinja-like templates for Rust" keywords = ["markup", "template", "jinja2", "html"] diff --git a/askama_derive/Cargo.toml b/askama_derive/Cargo.toml index 5230a18..5018beb 100644 --- a/askama_derive/Cargo.toml +++ b/askama_derive/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "askama_derive" -version = "0.2.0" +version = "0.2.1" authors = ["Dirkjan Ochtman "] description = "Procedural macro package for Askama" homepage = "https://github.com/djc/askama" @@ -12,5 +12,5 @@ workspace = ".." proc-macro = true [dependencies] -askama = { path = "../askama", version = "0.2.0" } +askama = { path = "../askama", version = "0.2.1" } syn = "0.11" -- cgit