diff options
author | Dirkjan Ochtman <dirkjan@ochtman.nl> | 2018-07-23 14:04:57 +0100 |
---|---|---|
committer | Dirkjan Ochtman <dirkjan@ochtman.nl> | 2018-07-23 14:04:57 +0100 |
commit | b0008ff7d1289fa09668518d440f13dcb56154e5 (patch) | |
tree | 8bc0d5b290d0c761f7f8fdee26510e5093b1746c | |
parent | c2400429220536a845e4a75cb27a9978a923d320 (diff) | |
download | askama-b0008ff7d1289fa09668518d440f13dcb56154e5.tar.gz askama-b0008ff7d1289fa09668518d440f13dcb56154e5.tar.bz2 askama-b0008ff7d1289fa09668518d440f13dcb56154e5.zip |
Bump versions to 0.7.1
Diffstat (limited to '')
-rw-r--r-- | askama/Cargo.toml | 6 | ||||
-rw-r--r-- | askama_derive/Cargo.toml | 4 | ||||
-rw-r--r-- | askama_shared/Cargo.toml | 2 |
3 files changed, 6 insertions, 6 deletions
diff --git a/askama/Cargo.toml b/askama/Cargo.toml index 1e7f1ec..76d8f4c 100644 --- a/askama/Cargo.toml +++ b/askama/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "askama" -version = "0.7.0" +version = "0.7.1" authors = ["Dirkjan Ochtman <dirkjan@ochtman.nl>"] description = "Type-safe, compiled Jinja-like templates for Rust" documentation = "https://docs.rs/askama" @@ -25,8 +25,8 @@ with-rocket = ["rocket", "askama_derive/rocket"] with-actix-web = ["actix-web", "askama_derive/actix-web", "mime_guess"] [dependencies] -askama_derive = { path = "../askama_derive", version = "0.7.0" } -askama_shared = { version = "0.7.0", path = "../askama_shared" } +askama_derive = { path = "../askama_derive", version = "0.7.1" } +askama_shared = { version = "0.7.1", path = "../askama_shared" } iron = { version = ">= 0.5, < 0.7", optional = true } rocket = { version = "0.3", optional = true } actix-web = { version = "0.7", optional = true } diff --git a/askama_derive/Cargo.toml b/askama_derive/Cargo.toml index 774fb51..cefe35f 100644 --- a/askama_derive/Cargo.toml +++ b/askama_derive/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "askama_derive" -version = "0.7.0" +version = "0.7.1" authors = ["Dirkjan Ochtman <dirkjan@ochtman.nl>"] description = "Procedural macro package for Askama" homepage = "https://github.com/djc/askama" @@ -18,7 +18,7 @@ rocket = ["askama_shared/rocket"] actix-web = ["askama_shared/actix-web"] [dependencies] -askama_shared = { version = "0.7.0", path = "../askama_shared" } +askama_shared = { version = "0.7.1", path = "../askama_shared" } nom = "4" proc-macro2 = "0.4" quote = "0.6" diff --git a/askama_shared/Cargo.toml b/askama_shared/Cargo.toml index 5b93404..a206da6 100644 --- a/askama_shared/Cargo.toml +++ b/askama_shared/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "askama_shared" -version = "0.7.0" +version = "0.7.1" authors = ["Dirkjan Ochtman <dirkjan@ochtman.nl>"] description = "Shared code for Askama" homepage = "https://github.com/djc/askama" |