diff options
-rw-r--r-- | askama/Cargo.toml | 6 | ||||
-rw-r--r-- | askama_actix/Cargo.toml | 2 | ||||
-rw-r--r-- | askama_derive/Cargo.toml | 4 | ||||
-rw-r--r-- | askama_gotham/Cargo.toml | 4 | ||||
-rw-r--r-- | askama_shared/Cargo.toml | 4 | ||||
-rw-r--r-- | askama_tide/Cargo.toml | 4 | ||||
-rw-r--r-- | askama_warp/Cargo.toml | 4 |
7 files changed, 14 insertions, 14 deletions
diff --git a/askama/Cargo.toml b/askama/Cargo.toml index f1eb91f..2e67892 100644 --- a/askama/Cargo.toml +++ b/askama/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "askama" -version = "0.11.0-beta.1" +version = "0.11.0" description = "Type-safe, compiled Jinja-like templates for Rust" documentation = "https://docs.rs/askama" keywords = ["markup", "template", "jinja2", "html"] @@ -32,9 +32,9 @@ with-tide = ["askama_derive/tide"] with-warp = ["askama_derive/warp"] [dependencies] -askama_derive = { version = "0.11.0-beta.1", path = "../askama_derive" } +askama_derive = { version = "0.11.0", path = "../askama_derive" } askama_escape = { version = "0.10", path = "../askama_escape" } -askama_shared = { version = "0.12.0-beta.1", path = "../askama_shared", default-features = false } +askama_shared = { version = "0.12.0", path = "../askama_shared", default-features = false } mime = { version = "0.3", optional = true } mime_guess = { version = "2", optional = true } diff --git a/askama_actix/Cargo.toml b/askama_actix/Cargo.toml index 8e81976..3c89f2a 100644 --- a/askama_actix/Cargo.toml +++ b/askama_actix/Cargo.toml @@ -14,7 +14,7 @@ edition = "2018" [dependencies] actix-web = { version = "4.0.0-beta.10", default-features = false } -askama = { version = "0.11.0-beta.1", path = "../askama", default-features = false, features = ["with-actix-web", "mime", "mime_guess"] } +askama = { version = "0.11.0", path = "../askama", default-features = false, features = ["with-actix-web", "mime", "mime_guess"] } bytes = { version = "1" } futures-util = { version = "0.3" } diff --git a/askama_derive/Cargo.toml b/askama_derive/Cargo.toml index d521199..a30aef4 100644 --- a/askama_derive/Cargo.toml +++ b/askama_derive/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "askama_derive" -version = "0.11.0-beta.1" +version = "0.11.0" description = "Procedural macro package for Askama" homepage = "https://github.com/djc/askama" repository = "https://github.com/djc/askama" @@ -24,6 +24,6 @@ tide = [] warp = [] [dependencies] -askama_shared = { version = "0.12.0-beta.1", path = "../askama_shared", default-features = false } +askama_shared = { version = "0.12.0", path = "../askama_shared", default-features = false } proc-macro2 = "1" syn = "1" diff --git a/askama_gotham/Cargo.toml b/askama_gotham/Cargo.toml index add6b9a..2f42be8 100644 --- a/askama_gotham/Cargo.toml +++ b/askama_gotham/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "askama_gotham" -version = "0.12.0" +version = "0.13.0" description = "Gotham integration for Askama templates" documentation = "https://docs.rs/askama" keywords = ["markup", "template", "jinja2", "html"] @@ -13,7 +13,7 @@ readme = "README.md" edition = "2018" [dependencies] -askama = { version = "0.11.0-beta.1", path = "../askama", default-features = false, features = ["with-gotham", "mime", "mime_guess"] } +askama = { version = "0.11.0", path = "../askama", default-features = false, features = ["with-gotham", "mime", "mime_guess"] } gotham = { version = "0.7", default-features = false } hyper = "0.14.4" diff --git a/askama_shared/Cargo.toml b/askama_shared/Cargo.toml index b831199..365c0f2 100644 --- a/askama_shared/Cargo.toml +++ b/askama_shared/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "askama_shared" -version = "0.12.0-beta.1" +version = "0.12.0" description = "Shared code for Askama" homepage = "https://github.com/djc/askama" repository = "https://github.com/djc/askama" @@ -16,7 +16,7 @@ json = ["serde", "serde_json"] yaml = ["serde", "serde_yaml"] [dependencies] -askama_escape = { version = "0.10", path = "../askama_escape" } +askama_escape = { version = "0.10.2", path = "../askama_escape" } humansize = { version = "1.1.0", optional = true } nom = "7" num-traits = { version = "0.2.6", optional = true } diff --git a/askama_tide/Cargo.toml b/askama_tide/Cargo.toml index 1e1bcd1..d51afd5 100644 --- a/askama_tide/Cargo.toml +++ b/askama_tide/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "askama_tide" -version = "0.13.0" +version = "0.14.0" edition = "2018" description = "Tide integration for Askama templates" keywords = ["markup", "template", "html", "tide", "http-types"] @@ -12,7 +12,7 @@ workspace = ".." readme = "README.md" [dependencies] -askama = { version = "0.11.0-beta.1", path = "../askama", default-features = false, features = ["with-tide"] } +askama = { version = "0.11.0", path = "../askama", default-features = false, features = ["with-tide"] } tide = { version = "0.16", default-features = false } [dev-dependencies] diff --git a/askama_warp/Cargo.toml b/askama_warp/Cargo.toml index a9a7431..84ef7eb 100644 --- a/askama_warp/Cargo.toml +++ b/askama_warp/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "askama_warp" -version = "0.11.0" +version = "0.12.0" description = "Warp integration for Askama templates" documentation = "https://docs.rs/askama" keywords = ["markup", "template", "jinja2", "html"] @@ -13,7 +13,7 @@ readme = "README.md" edition = "2018" [dependencies] -askama = { version = "0.11.0-beta.1", path = "../askama", default-features = false, features = ["with-warp", "mime", "mime_guess"] } +askama = { version = "0.11.0", path = "../askama", default-features = false, features = ["with-warp", "mime", "mime_guess"] } warp = { version = "0.3", default-features = false } [dev-dependencies] |