mirror of
https://github.com/askama-rs/askama.git
synced 2025-09-28 21:41:35 +00:00
Bump version numbers in anticipation of beta release
This commit is contained in:
parent
e1b6969905
commit
47c6bca8ac
@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "askama"
|
||||
version = "0.10.6"
|
||||
version = "0.11.0-beta.1"
|
||||
authors = ["Dirkjan Ochtman <dirkjan@ochtman.nl>"]
|
||||
description = "Type-safe, compiled Jinja-like templates for Rust"
|
||||
documentation = "https://docs.rs/askama"
|
||||
@ -33,9 +33,9 @@ with-tide = ["askama_derive/tide"]
|
||||
with-warp = ["askama_derive/warp"]
|
||||
|
||||
[dependencies]
|
||||
askama_derive = { version = "0.10.5", path = "../askama_derive" }
|
||||
askama_derive = { version = "0.11.0-beta.1", path = "../askama_derive" }
|
||||
askama_escape = { version = "0.10", path = "../askama_escape" }
|
||||
askama_shared = { version = "0.11.2", path = "../askama_shared", default-features = false }
|
||||
askama_shared = { version = "0.12.0-beta.1", path = "../askama_shared", default-features = false }
|
||||
mime = { version = "0.3", optional = true }
|
||||
mime_guess = { version = "2", optional = true }
|
||||
|
||||
|
@ -15,7 +15,7 @@ edition = "2018"
|
||||
|
||||
[dependencies]
|
||||
actix-web = { version = "3", default-features = false }
|
||||
askama = { version = "0.10.6", path = "../askama", default-features = false, features = ["with-actix-web", "mime", "mime_guess"] }
|
||||
askama = { version = "0.11.0-beta.1", path = "../askama", default-features = false, features = ["with-actix-web", "mime", "mime_guess"] }
|
||||
bytes = { version = "0.5" }
|
||||
futures-util = { version = "0.3" }
|
||||
|
||||
|
@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "askama_derive"
|
||||
version = "0.10.5"
|
||||
version = "0.11.0-beta.1"
|
||||
authors = ["Dirkjan Ochtman <dirkjan@ochtman.nl>"]
|
||||
description = "Procedural macro package for Askama"
|
||||
homepage = "https://github.com/djc/askama"
|
||||
@ -25,6 +25,6 @@ tide = []
|
||||
warp = []
|
||||
|
||||
[dependencies]
|
||||
askama_shared = { version = "0.11", path = "../askama_shared", default-features = false }
|
||||
askama_shared = { version = "0.12.0-beta.1", path = "../askama_shared", default-features = false }
|
||||
proc-macro2 = "1"
|
||||
syn = "1"
|
||||
|
@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "askama_escape"
|
||||
version = "0.10.1"
|
||||
version = "0.10.2"
|
||||
authors = ["Dirkjan Ochtman <dirkjan@ochtman.nl>"]
|
||||
description = "Optimized HTML escaping code, extracted from Askama"
|
||||
documentation = "https://docs.rs/askama_escape"
|
||||
|
@ -14,7 +14,7 @@ readme = "README.md"
|
||||
edition = "2018"
|
||||
|
||||
[dependencies]
|
||||
askama = { version = "0.10", path = "../askama", default-features = false, features = ["with-gotham", "mime", "mime_guess"] }
|
||||
askama = { version = "0.11.0-beta.1", path = "../askama", default-features = false, features = ["with-gotham", "mime", "mime_guess"] }
|
||||
gotham = { version = "0.6", default-features = false }
|
||||
hyper = "0.14.4"
|
||||
|
||||
|
@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "askama_rocket"
|
||||
version = "0.11.0-rc.1"
|
||||
version = "0.11.0-rc.2"
|
||||
authors = ["Dirkjan Ochtman <dirkjan@ochtman.nl>"]
|
||||
description = "Rocket integration for Askama templates"
|
||||
documentation = "https://docs.rs/askama"
|
||||
@ -14,5 +14,5 @@ readme = "README.md"
|
||||
edition = "2018"
|
||||
|
||||
[dependencies]
|
||||
askama = { version = "0.10", path = "../askama", default-features = false, features = ["with-rocket", "mime", "mime_guess"] }
|
||||
askama = { version = "0.11.0-beta.1", path = "../askama", default-features = false, features = ["with-rocket", "mime", "mime_guess"] }
|
||||
rocket = { version = "0.5.0-rc.1", default-features = false }
|
||||
|
@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "askama_shared"
|
||||
version = "0.11.2"
|
||||
version = "0.12.0-beta.1"
|
||||
authors = ["Dirkjan Ochtman <dirkjan@ochtman.nl>"]
|
||||
description = "Shared code for Askama"
|
||||
homepage = "https://github.com/djc/askama"
|
||||
|
@ -13,7 +13,7 @@ workspace = ".."
|
||||
readme = "README.md"
|
||||
|
||||
[dependencies]
|
||||
askama = { version = "0.10.2", path = "../askama", default-features = false, features = ["with-tide"] }
|
||||
askama = { version = "0.11.0-beta.1", path = "../askama", default-features = false, features = ["with-tide"] }
|
||||
tide = { version = "0.16", default-features = false }
|
||||
|
||||
[dev-dependencies]
|
||||
|
@ -14,7 +14,7 @@ readme = "README.md"
|
||||
edition = "2018"
|
||||
|
||||
[dependencies]
|
||||
askama = { version = "0.10", path = "../askama", default-features = false, features = ["with-warp", "mime", "mime_guess"] }
|
||||
askama = { version = "0.11.0-beta.1", path = "../askama", default-features = false, features = ["with-warp", "mime", "mime_guess"] }
|
||||
warp = { version = "0.3", default-features = false }
|
||||
|
||||
[dev-dependencies]
|
||||
|
@ -10,7 +10,7 @@ publish = false
|
||||
default = ["serde_json", "askama/serde-json"]
|
||||
|
||||
[dependencies]
|
||||
askama = { path = "../askama", version = "*" }
|
||||
askama = { path = "../askama", version = "0.11.0-beta.1" }
|
||||
serde_json = { version = "1.0", optional = true }
|
||||
|
||||
[dev-dependencies]
|
||||
|
Loading…
x
Reference in New Issue
Block a user