From a47c63a1fb0249523d8eb82925a90091fb351cc0 Mon Sep 17 00:00:00 2001 From: Ed Page Date: Sat, 23 Sep 2017 21:17:44 -0600 Subject: [PATCH] chore: Release 0.10.1 --- CHANGELOG.md | 12 ++++++++++++ CONTRIBUTING.md | 5 ++--- Cargo.toml | 2 +- 3 files changed, 15 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e7f6da6ec..381652614 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,15 @@ + +## 0.10.1 (2017-09-24) + + +#### Features + +* Turn `serde` into a default feature. ([6be99f1d](https://github.com/cobalt-org/liquid-rust/commit/6be99f1da4c066dc08eafd6918f604409f93d43d), closes [#128](https://github.com/cobalt-org/liquid-rust/issues/128)) + +### Bug Fixes +* Stop recompiling everytime due to Skeptic. + + ## v0.10.0 (2017-05-27) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 786e0d26b..1fbb113dd 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -52,10 +52,9 @@ Hopefully we get this integrated into your CI process. When we're ready to release, a project owner should do the following - Determine what the next version is, according to semver -- Run `clog --setversion ..` and commit the changelog -- Manually touch up the change log and commit +- Run `clog --setversion ..`, touch up the log, and commit it - Update the version in `Cargo.toml` and commit -- Run `git tag v..` +- Run `git tag -a v..` - `git push --tags` to `master` - Run `cargo publish` (run `cargo login` first if needed) - Update README.md to list the new version for Cargo.toml diff --git a/Cargo.toml b/Cargo.toml index ca3ddc4fa..32322744d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "liquid" -version = "0.10.0" +version = "0.10.1" authors = ["Johann Hofmann "] description = "The liquid templating language for Rust" repository = "https://github.com/cobalt-org/liquid-rust"