Skip to content

Commit

Permalink
Bump version numbers
Browse files Browse the repository at this point in the history
  • Loading branch information
djc committed Jun 30, 2020
1 parent 6c4132e commit 073788d
Show file tree
Hide file tree
Showing 9 changed files with 19 additions and 20 deletions.
9 changes: 4 additions & 5 deletions askama/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "askama"
version = "0.9.0"
version = "0.10.0"
authors = ["Dirkjan Ochtman <[email protected]>"]
description = "Type-safe, compiled Jinja-like templates for Rust"
documentation = "https://docs.rs/askama"
Expand All @@ -14,7 +14,6 @@ readme = "../README.md"
edition = "2018"

[badges]
azure-devops = { project = "dochtman/Projects", pipeline = "Askama", build = "2" }
maintenance = { status = "actively-developed" }

[features]
Expand All @@ -32,9 +31,9 @@ with-gotham = ["askama_derive/gotham"]
with-warp = ["askama_derive/warp"]

[dependencies]
askama_derive = { version = "0.9.0", path = "../askama_derive" }
askama_escape = { version = "0.3.0", path = "../askama_escape" }
askama_shared = { version = "0.9.0", path = "../askama_shared", default-features = false }
askama_derive = { version = "0.10", path = "../askama_derive" }
askama_escape = { version = "0.10", path = "../askama_escape" }
askama_shared = { version = "0.10", path = "../askama_shared", default-features = false }
mime = { version = "0.3", optional = true }
mime_guess = { version = "2.0.0-alpha", optional = true }

Expand Down
4 changes: 2 additions & 2 deletions askama_actix/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "askama_actix"
version = "0.9.0"
version = "0.10.0"
authors = ["Dirkjan Ochtman <[email protected]>"]
description = "Actix-Web integration for Askama templates"
documentation = "https://docs.rs/askama"
Expand All @@ -14,7 +14,7 @@ edition = "2018"

[dependencies]
actix-web = { version = "2" }
askama = { version = "0.9.0", path = "../askama", features = ["with-actix-web", "mime", "mime_guess"] }
askama = { version = "0.10", path = "../askama", features = ["with-actix-web", "mime", "mime_guess"] }
bytes = { version = "0.5" }
futures = { version = "0.3" }

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.9.0"
version = "0.10.0"
authors = ["Dirkjan Ochtman <[email protected]>"]
description = "Procedural macro package for Askama"
homepage = "https://github.com/djc/askama"
Expand All @@ -20,7 +20,7 @@ gotham = []
warp = []

[dependencies]
askama_shared = { version = "0.9", path = "../askama_shared" }
askama_shared = { version = "0.10", path = "../askama_shared" }
proc-macro2 = "1"
quote = "1"
syn = "1"
2 changes: 1 addition & 1 deletion askama_escape/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "askama_escape"
version = "0.3.0"
version = "0.10.0"
authors = ["Dirkjan Ochtman <[email protected]>"]
description = "Optimized HTML escaping code, extracted from Askama"
documentation = "https://docs.rs/askama_escape"
Expand Down
4 changes: 2 additions & 2 deletions askama_gotham/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "askama_gotham"
version = "0.9.0"
version = "0.10.0"
authors = ["Dirkjan Ochtman <[email protected]>"]
description = "Gotham integration for Askama templates"
documentation = "https://docs.rs/askama"
Expand All @@ -13,7 +13,7 @@ workspace = ".."
edition = "2018"

[dependencies]
askama = { version = "0.9.0", path = "../askama", features = ["with-gotham", "mime", "mime_guess"] }
askama = { version = "0.10", path = "../askama", features = ["with-gotham", "mime", "mime_guess"] }
gotham = { version = "0.4", default-features = false }
hyper = "0.12"

Expand Down
4 changes: 2 additions & 2 deletions askama_iron/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "askama_iron"
version = "0.9.0"
version = "0.10.0"
authors = ["Dirkjan Ochtman <[email protected]>"]
description = "Iron integration for Askama templates"
documentation = "https://docs.rs/askama"
Expand All @@ -13,5 +13,5 @@ workspace = ".."
edition = "2018"

[dependencies]
askama = { version = "0.9.0", path = "../askama", features = ["with-iron"] }
askama = { version = "0.10", path = "../askama", features = ["with-iron"] }
iron = { version = ">= 0.5, < 0.7" }
4 changes: 2 additions & 2 deletions askama_rocket/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "askama_rocket"
version = "0.9.0"
version = "0.10.0"
authors = ["Dirkjan Ochtman <[email protected]>"]
description = "Rocket integration for Askama templates"
documentation = "https://docs.rs/askama"
Expand All @@ -13,5 +13,5 @@ workspace = ".."
edition = "2018"

[dependencies]
askama = { version = "0.9.0", path = "../askama", features = ["with-rocket", "mime", "mime_guess"] }
askama = { version = "0.10", path = "../askama", features = ["with-rocket", "mime", "mime_guess"] }
rocket = { version = "0.4", default-features = false }
4 changes: 2 additions & 2 deletions askama_shared/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "askama_shared"
version = "0.9.1"
version = "0.10.0"
authors = ["Dirkjan Ochtman <[email protected]>"]
description = "Shared code for Askama"
homepage = "https://github.com/djc/askama"
Expand All @@ -16,7 +16,7 @@ json = ["serde", "serde_json"]
yaml = ["serde", "serde_yaml"]

[dependencies]
askama_escape = { version = "0.3.0", path = "../askama_escape" }
askama_escape = { version = "0.10", path = "../askama_escape" }
humansize = { version = "1.1.0", optional = true }
# default for features for nom don't work result in linker errors:
# https://github.com/rust-lang/rust/issues/62146
Expand Down
4 changes: 2 additions & 2 deletions askama_warp/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "askama_warp"
version = "0.9.0"
version = "0.10.0"
authors = ["Dirkjan Ochtman <[email protected]>", "Bjørn Madsen <[email protected]>"]
description = "Warp integration for Askama templates"
documentation = "https://docs.rs/askama"
Expand All @@ -13,7 +13,7 @@ workspace = ".."
edition = "2018"

[dependencies]
askama = { version = "0.9.0", path = "../askama", features = ["with-warp", "mime", "mime_guess"] }
askama = { version = "0.10", path = "../askama", features = ["with-warp", "mime", "mime_guess"] }
warp = { version = "0.2", default-features = false }

[dev-dependencies]
Expand Down

0 comments on commit 073788d

Please sign in to comment.