From b4a42d135e956ce7d0b5d2cdccbaff9bb9d6cf45 Mon Sep 17 00:00:00 2001 From: Rasmus Kaj Date: Sat, 22 Jul 2023 15:26:06 +0200 Subject: [PATCH] Release 0.17.0 -- 2023-07-22 * Added a check that no more than one of the http-types, mime02, or mime03 features are enabled (PR #124). Thanks @rustafarian-dev. * Changed the writer type from `W: &mut Write` to just `W: Write` (PR #125). Thanks @kornelski! * Fixed handling of `MULTI_WORD_CONSTANTS` in templates (Issue #129, PR #130). Thanks @wezm! * More ways to create a working rust symbol name from a "strange" static file name. Illegal characters are replaced by `_`, and if the file name starts with a number it is prefixed with `n` (Issue #82, PR #132). Thanks @Aedius for reporting! * Fixed more clippy lints (PR #123, #127). Thanks @vbrandl! * Updated `rsass` to 0.28.0 and `itertools` to 0.11.0. --- CHANGELOG.md | 2 +- Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 996fef0..f5fabb2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,7 +8,7 @@ project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). -## Unreleased +## Release 0.17.0 -- 2023-07-22 * Added a check that no more than one of the http-types, mime02, or mime03 features are enabled (PR #124). Thanks @rustafarian-dev. diff --git a/Cargo.toml b/Cargo.toml index ce14c37..be0f348 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ructe" -version = "0.16.2-PRE" +version = "0.17.0" authors = ["Rasmus Kaj "] description = "Rust Compiled Templates, efficient type-safe web page templates." documentation = "https://docs.rs/ructe"