From 4d7b1bb31b2f014885e2f94ae2e27bc4f8160b94 Mon Sep 17 00:00:00 2001 From: Ed Page Date: Mon, 30 Jul 2018 17:30:27 -0600 Subject: [PATCH] chore: Release 0.15.0 --- CHANGELOG.md | 16 ++++++++++++++++ Cargo.toml | 2 +- README.md | 2 +- src/lib.rs | 2 +- 4 files changed, 19 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 979a59a64..6546eaa30 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,19 @@ + +## 0.15.0 (2018-07-30) + + +#### Breaking Changes + +* Upgrade from f32 to f64 ([3eddded2](https://github.com/cobalt-org/liquid-rust/commit/3eddded24056c9f5c2d2d2f3adf143809fe82507), breaks [#](https://github.com/cobalt-org/liquid-rust/issues/)) + +#### Features + +* Expose filters/tags ([027a67cc](https://github.com/cobalt-org/liquid-rust/commit/027a67cccb9b40ffac0e25d5d9cd4501bdbe4d63)) +* Upgrade from f32 to f64 ([3eddded2](https://github.com/cobalt-org/liquid-rust/commit/3eddded24056c9f5c2d2d2f3adf143809fe82507), breaks [#](https://github.com/cobalt-org/liquid-rust/issues/)) +* **date:** Support today/now ([6a1e0a0f](https://github.com/cobalt-org/liquid-rust/commit/6a1e0a0f3ddc7892e8c84597929dbebc4dd80d29), closes [#181](https://github.com/cobalt-org/liquid-rust/issues/181)) + + + ## 0.14.3 (2018-04-10) diff --git a/Cargo.toml b/Cargo.toml index 68a1b2cc0..21a3c49f8 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "liquid" -version = "0.14.3" +version = "0.15.0" authors = ["Johann Hofmann "] description = "The liquid templating language for Rust" repository = "https://github.com/cobalt-org/liquid-rust" diff --git a/README.md b/README.md index d2e357a60..728c9c148 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,7 @@ To include liquid in your project add the following to your Cargo.toml: ```toml [dependencies] -liquid = "0.14" +liquid = "0.15" ``` Now you can use the crate in your code: diff --git a/src/lib.rs b/src/lib.rs index 6eb2b2e6d..762a14730 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -4,7 +4,7 @@ //! //! ```toml //! [dependencies] -//! liquid = "0.14" +//! liquid = "0.15" //! ``` //! //! ## Example