diff --git a/CHANGELOG.md b/CHANGELOG.md index e9ac7add8..d033ff4b1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # Change Log -## [Unreleased](https://github.com/sunng87/handlebars-rust/compare/3.5.0...Unreleased) - ReleaseDate +## [3.5.1](https://github.com/sunng87/handlebars-rust/compare/3.5.0...3.5.1) - 2020-10-25 * [Fixed] dir source path separator bug on windows [#389] diff --git a/Cargo.toml b/Cargo.toml index f92165081..9eaf56ac6 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "handlebars" -version = "3.5.1-alpha.0" +version = "3.5.1" authors = ["Ning Sun "] description = "Handlebars templating implemented in Rust." license = "MIT" diff --git a/src/lib.rs b/src/lib.rs index 0c514e482..b24657a03 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1,4 +1,4 @@ -#![doc(html_root_url = "https://docs.rs/handlebars/3.5.0")] +#![doc(html_root_url = "https://docs.rs/handlebars/3.5.1")] //! # 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).