diff --git a/Cargo.lock b/Cargo.lock index eba9b13..f1a5121 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -79,7 +79,7 @@ dependencies = [ "serde_json", "tera", "tinytemplate", - "upon 0.7.1", + "upon 0.8.0", ] [[package]] @@ -419,7 +419,7 @@ dependencies = [ "arbitrary", "libfuzzer-sys", "serde", - "upon 0.7.1", + "upon 0.8.0", ] [[package]] @@ -1302,7 +1302,7 @@ dependencies = [ [[package]] name = "upon" -version = "0.7.1" +version = "0.8.0" dependencies = [ "serde", "unicode-ident", diff --git a/Cargo.toml b/Cargo.toml index 28c3af1..1e27016 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "upon" -version = "0.7.1" +version = "0.8.0" authors = ["Ross MacArthur "] edition = "2021" rust-version = "1.60" diff --git a/RELEASES.md b/RELEASES.md index f673774..49c54ea 100644 --- a/RELEASES.md +++ b/RELEASES.md @@ -1,5 +1,20 @@ # Releases +## 0.8.0 + +*October 28th, 2023* + +### Features + +- [Add `with_template_fn` to `Renderer`][39a55429] This allows you to configure + the way that included templates are resolved. + +- [Allow setting `max_include_depth` at renderer level][53671a10] This allows + you to configure the maximum include depth on a per-renderer basis. + +[53671a10]: https://github.com/rossmacarthur/upon/commit/53671a10811a622c093fb5349a62246e9a900d29 +[39a55429]: https://github.com/rossmacarthur/upon/commit/39a5542981ef6492b23a198823c235dcb4968e4e + ## 0.7.1 *July 23rd, 2023*