aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Cargo.lock10
-rw-r--r--askama/Cargo.toml2
-rw-r--r--askama_derive/Cargo.toml4
3 files changed, 8 insertions, 8 deletions
diff --git a/Cargo.lock b/Cargo.lock
index 5aabfe6..9505659 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -2,13 +2,13 @@
name = "askama_testing"
version = "0.1.0"
dependencies = [
- "askama 0.2.0",
- "askama_derive 0.2.0",
+ "askama 0.2.1",
+ "askama_derive 0.2.1",
]
[[package]]
name = "askama"
-version = "0.2.0"
+version = "0.2.1"
dependencies = [
"nom 2.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
"syn 0.11.8 (registry+https://github.com/rust-lang/crates.io-index)",
@@ -16,9 +16,9 @@ dependencies = [
[[package]]
name = "askama_derive"
-version = "0.2.0"
+version = "0.2.1"
dependencies = [
- "askama 0.2.0",
+ "askama 0.2.1",
"syn 0.11.8 (registry+https://github.com/rust-lang/crates.io-index)",
]
diff --git a/askama/Cargo.toml b/askama/Cargo.toml
index 5b11224..9937eaa 100644
--- a/askama/Cargo.toml
+++ b/askama/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "askama"
-version = "0.2.0"
+version = "0.2.1"
authors = ["Dirkjan Ochtman <dirkjan@ochtman.nl>"]
description = "Type-safe, compiled Jinja-like templates for Rust"
keywords = ["markup", "template", "jinja2", "html"]
diff --git a/askama_derive/Cargo.toml b/askama_derive/Cargo.toml
index 5230a18..5018beb 100644
--- a/askama_derive/Cargo.toml
+++ b/askama_derive/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "askama_derive"
-version = "0.2.0"
+version = "0.2.1"
authors = ["Dirkjan Ochtman <dirkjan@ochtman.nl>"]
description = "Procedural macro package for Askama"
homepage = "https://github.com/djc/askama"
@@ -12,5 +12,5 @@ workspace = ".."
proc-macro = true
[dependencies]
-askama = { path = "../askama", version = "0.2.0" }
+askama = { path = "../askama", version = "0.2.1" }
syn = "0.11"