From b1d46f178a5982132ebcd28afc82046e1411fbb9 Mon Sep 17 00:00:00 2001 From: Ning Sun Date: Fri, 14 Aug 2020 10:45:31 +0800 Subject: [PATCH] (cargo-release) version 3.4.0 --- CHANGELOG.md | 2 +- Cargo.toml | 2 +- src/lib.rs | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 40b6eb4c2..237a1195d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # Change Log -## [Unreleased](https://github.com/sunng87/handlebars-rust/compare/3.3.0...Unreleased) - ReleaseDate +## [3.4.0](https://github.com/sunng87/handlebars-rust/compare/3.3.0...3.4.0) - 2020-08-14 * [Added] Debug log that can be turned on by using envlog or other implementation, to trace data resolution during rendering [#369] * [Fixed] Derived value as block context base value [#343, #353] diff --git a/Cargo.toml b/Cargo.toml index fe8efb81c..d88364ade 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "handlebars" -version = "3.3.1-alpha.0" +version = "3.4.0" authors = ["Ning Sun "] description = "Handlebars templating implemented in Rust." license = "MIT" diff --git a/src/lib.rs b/src/lib.rs index 754a79f14..84c842053 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1,4 +1,4 @@ -#![doc(html_root_url = "https://docs.rs/handlebars/3.3.0")] +#![doc(html_root_url = "https://docs.rs/handlebars/3.4.0")] //! # Handlebars //! //! [Handlebars](http://handlebarsjs.com/) is a modern and extensible templating solution originally created in the JavaScript world. It's used by many popular frameworks like [Ember.js](http://emberjs.com) and Chaplin. It's also ported to some other platforms such as [Java](https://github.com/jknack/handlebars.java).