aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--askama_derive/Cargo.toml4
-rw-r--r--askama_parser/Cargo.toml2
2 files changed, 3 insertions, 3 deletions
diff --git a/askama_derive/Cargo.toml b/askama_derive/Cargo.toml
index 53cdc8b..fb7db70 100644
--- a/askama_derive/Cargo.toml
+++ b/askama_derive/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "askama_derive"
-version = "0.12.2"
+version = "0.12.3"
description = "Procedural macro package for Askama"
homepage = "https://github.com/djc/askama"
repository = "https://github.com/djc/askama"
@@ -31,7 +31,7 @@ with-tide = []
with-warp = []
[dependencies]
-parser = { package = "askama_parser", version = "0.1", path = "../askama_parser" }
+parser = { package = "askama_parser", version = "0.2", path = "../askama_parser" }
mime = "0.3"
mime_guess = "2"
proc-macro2 = "1"
diff --git a/askama_parser/Cargo.toml b/askama_parser/Cargo.toml
index e2fb11c..eecf32e 100644
--- a/askama_parser/Cargo.toml
+++ b/askama_parser/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "askama_parser"
-version = "0.1.1"
+version = "0.2.0"
description = "Parser for Askama templates"
documentation = "https://docs.rs/askama"
keywords = ["markup", "template", "jinja2", "html"]