diff options
author | Dirkjan Ochtman <dirkjan@ochtman.nl> | 2017-08-02 21:00:23 +0200 |
---|---|---|
committer | Dirkjan Ochtman <dirkjan@ochtman.nl> | 2017-08-02 21:00:23 +0200 |
commit | 02e0f783f93d6336015736d4adfd2cebca275b00 (patch) | |
tree | 890a3b7d685fc46590455173273b34d1d0a3fdd4 | |
parent | 8ff2e316c07b4fd4373dd8a0bb5747bef3372a32 (diff) | |
download | askama-02e0f783f93d6336015736d4adfd2cebca275b00.tar.gz askama-02e0f783f93d6336015736d4adfd2cebca275b00.tar.bz2 askama-02e0f783f93d6336015736d4adfd2cebca275b00.zip |
Bump version to 0.3.4
-rw-r--r-- | Cargo.lock | 8 | ||||
-rw-r--r-- | askama/Cargo.toml | 4 | ||||
-rw-r--r-- | askama_derive/Cargo.toml | 2 |
3 files changed, 7 insertions, 7 deletions
@@ -2,19 +2,19 @@ name = "askama_testing" version = "0.1.0" dependencies = [ - "askama 0.3.3", + "askama 0.3.4", ] [[package]] name = "askama" -version = "0.3.3" +version = "0.3.4" dependencies = [ - "askama_derive 0.3.3", + "askama_derive 0.3.4", ] [[package]] name = "askama_derive" -version = "0.3.3" +version = "0.3.4" dependencies = [ "nom 3.2.0 (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 8cdef77..c9ee4ed 100644 --- a/askama/Cargo.toml +++ b/askama/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "askama" -version = "0.3.3" +version = "0.3.4" authors = ["Dirkjan Ochtman <dirkjan@ochtman.nl>"] 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.3" } +askama_derive = { path = "../askama_derive", version = "0.3.4" } diff --git a/askama_derive/Cargo.toml b/askama_derive/Cargo.toml index 4aad3fb..3bec13a 100644 --- a/askama_derive/Cargo.toml +++ b/askama_derive/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "askama_derive" -version = "0.3.3" +version = "0.3.4" authors = ["Dirkjan Ochtman <dirkjan@ochtman.nl>"] description = "Procedural macro package for Askama" homepage = "https://github.com/djc/askama" |