Bump versions to 0.7.1

This commit is contained in:
Dirkjan Ochtman 2018-07-23 14:04:57 +01:00
parent c240042922
commit b0008ff7d1
3 changed files with 6 additions and 6 deletions

View File

@ -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 }

View File

@ -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"

View File

@ -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"