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

View File

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

View File

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

View File

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