From ba70b11f40b960bf09d2a43e106bdad196cc158b Mon Sep 17 00:00:00 2001 From: Christian Legnitto Date: Fri, 10 Mar 2017 12:54:12 -0800 Subject: Bump versions in README Without using this version I was getting a warning on stable rust. --- README.md | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'README.md') diff --git a/README.md b/README.md index a346348..fe9bb12 100644 --- a/README.md +++ b/README.md @@ -59,11 +59,10 @@ First, add the following to your crate's `Cargo.toml`: build = "build.rs" # in section [dependencies] -askama = "0.1" -askama_derive = "0.1" +askama = "0.3" # in section [build-dependencies] -askama = "0.1" +askama = "0.3" ``` Because Askama will generate Rust code from your template files, -- cgit From 52733424e789757037539a6f4a8cf5129eeb6655 Mon Sep 17 00:00:00 2001 From: Jordan Danford Date: Sat, 13 May 2017 16:32:38 -0700 Subject: Remove duplicate "if/else" --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'README.md') diff --git a/README.md b/README.md index fe9bb12..f9b7286 100644 --- a/README.md +++ b/README.md @@ -31,7 +31,7 @@ Many thanks to [David Tolnay][dtolnay] for his support in improving Askama. ### Supported in templates * Template inheritance (one level only) -* Basic loops and if/else if/else statements +* Basic loops and if/else statements * Whitespace suppressing with '-' markers * Some built-in filters -- cgit