Bump version to 0.2.1

This commit is contained in:
Dirkjan Ochtman 2017-03-05 19:56:35 +01:00
parent 0725008142
commit bd94bf2d01
3 changed files with 8 additions and 8 deletions

10
Cargo.lock generated
View File

@ -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)",
]

View File

@ -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"]

View File

@ -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"