From c83c0451a56a551a099797c4ef366cd98340e88b Mon Sep 17 00:00:00 2001 From: Ed Page Date: Tue, 26 Dec 2017 18:04:36 -0700 Subject: [PATCH] chore: Release fixes as 0.13.4 * **parse:** Error on empty expressions ([5cffe44a](https://github.com/cobalt-org/liquid-rust/commit/5cffe44a5fb3821dab8a41b8662596421f387659), closes [#139](https://github.com/cobalt-org/liquid-rust/issues/139)) * **raw:** Stop swapping the text's order ([bd45c14b](https://github.com/cobalt-org/liquid-rust/commit/bd45c14b58e1b22e156b42f3c5629e3a0692e7d4), closes [#79](https://github.com/cobalt-org/liquid-rust/issues/79)) --- CHANGELOG.md | 11 +++++++++++ Cargo.toml | 2 +- 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3209963a0..dc538e325 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,14 @@ + +## 0.13.4 (2017-12-27) + + +#### Bug Fixes + +* **parse:** Error on empty expressions ([5cffe44a](https://github.com/cobalt-org/liquid-rust/commit/5cffe44a5fb3821dab8a41b8662596421f387659), closes [#139](https://github.com/cobalt-org/liquid-rust/issues/139)) +* **raw:** Stop swapping the text's order ([bd45c14b](https://github.com/cobalt-org/liquid-rust/commit/bd45c14b58e1b22e156b42f3c5629e3a0692e7d4), closes [#79](https://github.com/cobalt-org/liquid-rust/issues/79)) + + + ## 0.13.3 (2017-12-18) diff --git a/Cargo.toml b/Cargo.toml index 2d2f948d1..ff81059f0 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "liquid" -version = "0.13.3" +version = "0.13.4" authors = ["Johann Hofmann "] description = "The liquid templating language for Rust" repository = "https://github.com/cobalt-org/liquid-rust"