Bump version numbers to 0.9.0

This commit is contained in:
Dirkjan Ochtman 2020-01-15 13:55:33 +01:00
parent ca6c72e505
commit d89758c9fe
4 changed files with 9 additions and 9 deletions

View File

@ -1,6 +1,6 @@
[package]
name = "askama"
version = "0.8.0"
version = "0.9.0"
authors = ["Dirkjan Ochtman <dirkjan@ochtman.nl>"]
description = "Type-safe, compiled Jinja-like templates for Rust"
documentation = "https://docs.rs/askama"
@ -30,9 +30,9 @@ with-actix-web = ["actix-web", "askama_derive/actix-web", "mime", "mime_guess",
with-gotham = ["gotham", "askama_derive/gotham", "hyper", "mime", "mime_guess"]
[dependencies]
askama_derive = { version = "0.8.0", path = "../askama_derive" }
askama_escape = { version = "0.2.0", path = "../askama_escape" }
askama_shared = { version = "0.8.0", path = "../askama_shared", default-features = false }
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 }
iron = { version = ">= 0.5, < 0.7", optional = true }
rocket = { version = "0.4", optional = true }
actix-web = { version = "2", optional = true }

View File

@ -1,6 +1,6 @@
[package]
name = "askama_derive"
version = "0.8.0"
version = "0.9.0"
authors = ["Dirkjan Ochtman <dirkjan@ochtman.nl>"]
description = "Procedural macro package for Askama"
homepage = "https://github.com/djc/askama"
@ -19,7 +19,7 @@ actix-web = []
gotham = []
[dependencies]
askama_shared = { version = "0.8", path = "../askama_shared" }
askama_shared = { version = "0.9", path = "../askama_shared" }
# default for features for nom don't work result in linker errors:
# https://github.com/rust-lang/rust/issues/62146
nom = { version = "5", default-features = false, features = ["std"] }

View File

@ -1,6 +1,6 @@
[package]
name = "askama_escape"
version = "0.2.0"
version = "0.3.0"
authors = ["Dirkjan Ochtman <dirkjan@ochtman.nl>"]
description = "Optimized HTML escaping code, extracted from Askama"
documentation = "https://docs.rs/askama_escape"

View File

@ -1,6 +1,6 @@
[package]
name = "askama_shared"
version = "0.8.0"
version = "0.9.0"
authors = ["Dirkjan Ochtman <dirkjan@ochtman.nl>"]
description = "Shared code for Askama"
homepage = "https://github.com/djc/askama"
@ -16,7 +16,7 @@ json = ["serde", "serde_json"]
yaml = ["serde", "serde_yaml"]
[dependencies]
askama_escape = { version = "0.2.0", path = "../askama_escape" }
askama_escape = { version = "0.3.0", path = "../askama_escape" }
humansize = { version = "1.1.0", optional = true }
num-traits = { version = "0.2.6", optional = true }
serde = { version = "1.0", optional = true, features = ["derive"] }