aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLibravatar René Kijewski <Kijewski@users.noreply.github.com>2021-11-30 13:15:36 +0100
committerLibravatar GitHub <noreply@github.com>2021-11-30 13:15:36 +0100
commit3d82b59a2ae58e9c438315273f204fc2783eb0d3 (patch)
tree6e8d45cbc3527afb7f157713d2b70291e611e8f2
parent1762792385052bb688b9dde143d6a7a089069a14 (diff)
parentfd74cec18c73ed9166779742ba43d3e838a07b03 (diff)
downloadaskama-3d82b59a2ae58e9c438315273f204fc2783eb0d3.tar.gz
askama-3d82b59a2ae58e9c438315273f204fc2783eb0d3.tar.bz2
askama-3d82b59a2ae58e9c438315273f204fc2783eb0d3.zip
Merge pull request #562 from djc/prepare-0.12
Prepare 0.12
Diffstat (limited to '')
-rw-r--r--askama/Cargo.toml7
-rw-r--r--askama_actix/Cargo.toml3
-rw-r--r--askama_derive/Cargo.toml5
-rw-r--r--askama_escape/Cargo.toml1
-rw-r--r--askama_gotham/Cargo.toml5
-rw-r--r--askama_rocket/Cargo.toml1
-rw-r--r--askama_shared/Cargo.toml5
-rw-r--r--askama_tide/Cargo.toml5
-rw-r--r--askama_warp/Cargo.toml5
9 files changed, 14 insertions, 23 deletions
diff --git a/askama/Cargo.toml b/askama/Cargo.toml
index d3aaddc..f42e7d8 100644
--- a/askama/Cargo.toml
+++ b/askama/Cargo.toml
@@ -1,7 +1,6 @@
[package]
name = "askama"
-version = "0.11.0-beta.1"
-authors = ["Dirkjan Ochtman <dirkjan@ochtman.nl>"]
+version = "0.11.0"
description = "Type-safe, compiled Jinja-like templates for Rust"
documentation = "https://docs.rs/askama"
keywords = ["markup", "template", "jinja2", "html"]
@@ -34,9 +33,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 8514a9b..3c89f2a 100644
--- a/askama_actix/Cargo.toml
+++ b/askama_actix/Cargo.toml
@@ -1,7 +1,6 @@
[package]
name = "askama_actix"
version = "0.11.1"
-authors = ["Dirkjan Ochtman <dirkjan@ochtman.nl>"]
description = "Actix-Web integration for Askama templates"
documentation = "https://docs.rs/askama"
keywords = ["markup", "template", "jinja2", "html"]
@@ -15,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 19e327b..60ad48d 100644
--- a/askama_derive/Cargo.toml
+++ b/askama_derive/Cargo.toml
@@ -1,7 +1,6 @@
[package]
name = "askama_derive"
-version = "0.11.0-beta.1"
-authors = ["Dirkjan Ochtman <dirkjan@ochtman.nl>"]
+version = "0.11.0"
description = "Procedural macro package for Askama"
homepage = "https://github.com/djc/askama"
repository = "https://github.com/djc/askama"
@@ -26,6 +25,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_escape/Cargo.toml b/askama_escape/Cargo.toml
index d815f75..ed7148c 100644
--- a/askama_escape/Cargo.toml
+++ b/askama_escape/Cargo.toml
@@ -1,7 +1,6 @@
[package]
name = "askama_escape"
version = "0.10.2"
-authors = ["Dirkjan Ochtman <dirkjan@ochtman.nl>"]
description = "Optimized HTML escaping code, extracted from Askama"
documentation = "https://docs.rs/askama_escape"
keywords = ["html", "escaping"]
diff --git a/askama_gotham/Cargo.toml b/askama_gotham/Cargo.toml
index c812db3..2f42be8 100644
--- a/askama_gotham/Cargo.toml
+++ b/askama_gotham/Cargo.toml
@@ -1,7 +1,6 @@
[package]
name = "askama_gotham"
-version = "0.12.0"
-authors = ["Dirkjan Ochtman <dirkjan@ochtman.nl>"]
+version = "0.13.0"
description = "Gotham integration for Askama templates"
documentation = "https://docs.rs/askama"
keywords = ["markup", "template", "jinja2", "html"]
@@ -14,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_rocket/Cargo.toml b/askama_rocket/Cargo.toml
index 373ca4e..782d4a0 100644
--- a/askama_rocket/Cargo.toml
+++ b/askama_rocket/Cargo.toml
@@ -1,7 +1,6 @@
[package]
name = "askama_rocket"
version = "0.11.0-rc.2"
-authors = ["Dirkjan Ochtman <dirkjan@ochtman.nl>"]
description = "Rocket integration for Askama templates"
documentation = "https://docs.rs/askama"
keywords = ["markup", "template", "jinja2", "html"]
diff --git a/askama_shared/Cargo.toml b/askama_shared/Cargo.toml
index 9fb6674..365c0f2 100644
--- a/askama_shared/Cargo.toml
+++ b/askama_shared/Cargo.toml
@@ -1,7 +1,6 @@
[package]
name = "askama_shared"
-version = "0.12.0-beta.1"
-authors = ["Dirkjan Ochtman <dirkjan@ochtman.nl>"]
+version = "0.12.0"
description = "Shared code for Askama"
homepage = "https://github.com/djc/askama"
repository = "https://github.com/djc/askama"
@@ -17,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 2e7e4e2..d51afd5 100644
--- a/askama_tide/Cargo.toml
+++ b/askama_tide/Cargo.toml
@@ -1,7 +1,6 @@
[package]
name = "askama_tide"
-version = "0.13.0"
-authors = ["Jacob Rothstein <hi@jbr.me>"]
+version = "0.14.0"
edition = "2018"
description = "Tide integration for Askama templates"
keywords = ["markup", "template", "html", "tide", "http-types"]
@@ -13,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 3c820b2..84ef7eb 100644
--- a/askama_warp/Cargo.toml
+++ b/askama_warp/Cargo.toml
@@ -1,7 +1,6 @@
[package]
name = "askama_warp"
-version = "0.11.0"
-authors = ["Dirkjan Ochtman <dirkjan@ochtman.nl>", "Bjørn Madsen <bm@aeons.dk>"]
+version = "0.12.0"
description = "Warp integration for Askama templates"
documentation = "https://docs.rs/askama"
keywords = ["markup", "template", "jinja2", "html"]
@@ -14,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]