From 91fe53d9b5db7ace5f82889a174ef5061a049771 Mon Sep 17 00:00:00 2001 From: Dirkjan Ochtman Date: Wed, 2 Aug 2017 20:54:07 +0200 Subject: Bump version number to 0.3.3 --- Cargo.lock | 8 ++++---- askama/Cargo.toml | 4 ++-- askama_derive/Cargo.toml | 2 +- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index a01986a..17e6fb0 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2,19 +2,19 @@ name = "askama_testing" version = "0.1.0" dependencies = [ - "askama 0.3.2", + "askama 0.3.3", ] [[package]] name = "askama" -version = "0.3.2" +version = "0.3.3" dependencies = [ - "askama_derive 0.3.2", + "askama_derive 0.3.3", ] [[package]] name = "askama_derive" -version = "0.3.2" +version = "0.3.3" dependencies = [ "nom 2.2.1 (registry+https://github.com/rust-lang/crates.io-index)", "quote 0.3.15 (registry+https://github.com/rust-lang/crates.io-index)", diff --git a/askama/Cargo.toml b/askama/Cargo.toml index fe29473..8cdef77 100644 --- a/askama/Cargo.toml +++ b/askama/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "askama" -version = "0.3.2" +version = "0.3.3" authors = ["Dirkjan Ochtman "] description = "Type-safe, compiled Jinja-like templates for Rust" documentation = "https://docs.rs/askama" @@ -16,4 +16,4 @@ readme = "../README.md" travis-ci = { repository = "djc/askama" } [dependencies] -askama_derive = { path = "../askama_derive", version = "0.3.2" } +askama_derive = { path = "../askama_derive", version = "0.3.3" } diff --git a/askama_derive/Cargo.toml b/askama_derive/Cargo.toml index 885b11a..5f65f23 100644 --- a/askama_derive/Cargo.toml +++ b/askama_derive/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "askama_derive" -version = "0.3.2" +version = "0.3.3" authors = ["Dirkjan Ochtman "] description = "Procedural macro package for Askama" homepage = "https://github.com/djc/askama" -- cgit