aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLibravatar Dirkjan Ochtman <dirkjan@ochtman.nl>2021-08-05 13:16:09 +0200
committerLibravatar Dirkjan Ochtman <dirkjan@ochtman.nl>2021-08-21 19:12:41 +0200
commit47c6bca8ac0b7bf0ddf879130692029321db7ed9 (patch)
tree13c0f8b0b6f106e6cdd9fed1234cd7c0589e71c2
parente1b6969905dd5f8fd74b266446ae3e2735289f22 (diff)
downloadaskama-47c6bca8ac0b7bf0ddf879130692029321db7ed9.tar.gz
askama-47c6bca8ac0b7bf0ddf879130692029321db7ed9.tar.bz2
askama-47c6bca8ac0b7bf0ddf879130692029321db7ed9.zip
Bump version numbers in anticipation of beta release
Diffstat (limited to '')
-rw-r--r--askama/Cargo.toml6
-rw-r--r--askama_actix/Cargo.toml2
-rw-r--r--askama_derive/Cargo.toml4
-rw-r--r--askama_escape/Cargo.toml2
-rw-r--r--askama_gotham/Cargo.toml2
-rw-r--r--askama_rocket/Cargo.toml4
-rw-r--r--askama_shared/Cargo.toml2
-rw-r--r--askama_tide/Cargo.toml2
-rw-r--r--askama_warp/Cargo.toml2
-rw-r--r--testing/Cargo.toml2
10 files changed, 14 insertions, 14 deletions
diff --git a/askama/Cargo.toml b/askama/Cargo.toml
index 85e1213..4df0021 100644
--- a/askama/Cargo.toml
+++ b/askama/Cargo.toml
@@ -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 }
diff --git a/askama_actix/Cargo.toml b/askama_actix/Cargo.toml
index a518ca2..253fbd0 100644
--- a/askama_actix/Cargo.toml
+++ b/askama_actix/Cargo.toml
@@ -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" }
diff --git a/askama_derive/Cargo.toml b/askama_derive/Cargo.toml
index 258ad9e..92c05f3 100644
--- a/askama_derive/Cargo.toml
+++ b/askama_derive/Cargo.toml
@@ -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"
diff --git a/askama_escape/Cargo.toml b/askama_escape/Cargo.toml
index 1c054f7..d815f75 100644
--- a/askama_escape/Cargo.toml
+++ b/askama_escape/Cargo.toml
@@ -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"
diff --git a/askama_gotham/Cargo.toml b/askama_gotham/Cargo.toml
index 85da812..3fbca45 100644
--- a/askama_gotham/Cargo.toml
+++ b/askama_gotham/Cargo.toml
@@ -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"
diff --git a/askama_rocket/Cargo.toml b/askama_rocket/Cargo.toml
index 4c87ba0..373ca4e 100644
--- a/askama_rocket/Cargo.toml
+++ b/askama_rocket/Cargo.toml
@@ -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 }
diff --git a/askama_shared/Cargo.toml b/askama_shared/Cargo.toml
index 1ffbf1c..524f535 100644
--- a/askama_shared/Cargo.toml
+++ b/askama_shared/Cargo.toml
@@ -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"
diff --git a/askama_tide/Cargo.toml b/askama_tide/Cargo.toml
index efc773a..2e7e4e2 100644
--- a/askama_tide/Cargo.toml
+++ b/askama_tide/Cargo.toml
@@ -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]
diff --git a/askama_warp/Cargo.toml b/askama_warp/Cargo.toml
index 8cd26b4..3c820b2 100644
--- a/askama_warp/Cargo.toml
+++ b/askama_warp/Cargo.toml
@@ -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]
diff --git a/testing/Cargo.toml b/testing/Cargo.toml
index d676bef..daa2d68 100644
--- a/testing/Cargo.toml
+++ b/testing/Cargo.toml
@@ -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]