diff options
author | Dirkjan Ochtman <dirkjan@ochtman.nl> | 2017-08-02 20:51:35 +0200 |
---|---|---|
committer | Dirkjan Ochtman <dirkjan@ochtman.nl> | 2017-08-02 20:51:35 +0200 |
commit | 77c8279031ab8213ede048ad8b234e36fc27e249 (patch) | |
tree | 87fb9c467fdc676b6cf393fdf4d671925639c70b | |
parent | 85ed0253684f34e0f66bb1678d52e605b483c7e1 (diff) | |
download | askama-77c8279031ab8213ede048ad8b234e36fc27e249.tar.gz askama-77c8279031ab8213ede048ad8b234e36fc27e249.tar.bz2 askama-77c8279031ab8213ede048ad8b234e36fc27e249.zip |
Bump version number to 0.3.2
Diffstat (limited to '')
-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.1", + "askama 0.3.2", ] [[package]] name = "askama" -version = "0.3.1" +version = "0.3.2" dependencies = [ - "askama_derive 0.3.1", + "askama_derive 0.3.2", ] [[package]] name = "askama_derive" -version = "0.3.1" +version = "0.3.2" dependencies = [ "nom 2.1.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 178d8c9..fe29473 100644 --- a/askama/Cargo.toml +++ b/askama/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "askama" -version = "0.3.1" +version = "0.3.2" 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.1" } +askama_derive = { path = "../askama_derive", version = "0.3.2" } diff --git a/askama_derive/Cargo.toml b/askama_derive/Cargo.toml index 3f17f40..885b11a 100644 --- a/askama_derive/Cargo.toml +++ b/askama_derive/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "askama_derive" -version = "0.3.1" +version = "0.3.2" authors = ["Dirkjan Ochtman <dirkjan@ochtman.nl>"] description = "Procedural macro package for Askama" homepage = "https://github.com/djc/askama" |