Skip to content

Commit

Permalink
Bump version to 0.7.2
Browse files Browse the repository at this point in the history
  • Loading branch information
djc committed Oct 8, 2018
1 parent ba07e63 commit bdf4e29
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions askama/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "askama"
version = "0.7.1"
version = "0.7.2"
authors = ["Dirkjan Ochtman <[email protected]>"]
description = "Type-safe, compiled Jinja-like templates for Rust"
documentation = "https://docs.rs/askama"
Expand All @@ -25,8 +25,8 @@ with-rocket = ["rocket", "askama_derive/rocket"]
with-actix-web = ["actix-web", "askama_derive/actix-web", "mime_guess"]

[dependencies]
askama_derive = { version = "0.7.1", path = "../askama_derive" }
askama_shared = { version = "0.7.1", path = "../askama_shared" }
askama_derive = { version = "0.7.2", path = "../askama_derive" }
askama_shared = { version = "0.7.2", path = "../askama_shared" }
iron = { version = ">= 0.5, < 0.7", optional = true }
rocket = { version = "0.3", optional = true }
actix-web = { version = "0.7", optional = true }
Expand Down
4 changes: 2 additions & 2 deletions askama_derive/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "askama_derive"
version = "0.7.1"
version = "0.7.2"
authors = ["Dirkjan Ochtman <[email protected]>"]
description = "Procedural macro package for Askama"
homepage = "https://github.com/djc/askama"
Expand All @@ -18,7 +18,7 @@ rocket = ["askama_shared/rocket"]
actix-web = ["askama_shared/actix-web"]

[dependencies]
askama_shared = { version = "0.7.1", path = "../askama_shared" }
askama_shared = { version = "0.7.2", path = "../askama_shared" }
nom = "4"
proc-macro2 = "0.4"
quote = "0.6"
Expand Down
2 changes: 1 addition & 1 deletion askama_shared/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "askama_shared"
version = "0.7.1"
version = "0.7.2"
authors = ["Dirkjan Ochtman <[email protected]>"]
description = "Shared code for Askama"
homepage = "https://github.com/djc/askama"
Expand Down

0 comments on commit bdf4e29

Please sign in to comment.