From 95c4bc95102acc149d53b7ed1fd068921e23c131 Mon Sep 17 00:00:00 2001 From: Patrick Marks Date: Sun, 9 Jul 2023 03:23:12 -0700 Subject: [PATCH] widen version range of askama (#143) * widen version range of askama * Update plotly/Cargo.toml Co-authored-by: Adam Azarchs * update CHANGELOG --------- Co-authored-by: Michael Freeborn <31806808+mfreeborn@users.noreply.github.com> Co-authored-by: Adam Azarchs Co-authored-by: Michael Freeborn --- CHANGELOG.md | 3 +++ plotly/Cargo.toml | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d5cc7b86..da3b94b8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,9 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). ## [0.8.4] - 2023-01-xx +### Added +- [[#143](https://github.com/igiagkiozis/plotly/pull/143)] Widen version range of `askama`. + ### Fixed - [[#129](https://github.com/igiagkiozis/plotly/pull/129)] Fix issue for plots not showing in browser in Windows. Thanks to [@juanespj](https://github.com/juanespj) and [@M-NK-Y](https://github.com/M-NK-Y) for the PRs. diff --git a/plotly/Cargo.toml b/plotly/Cargo.toml index 42d656e5..ef72cb7b 100644 --- a/plotly/Cargo.toml +++ b/plotly/Cargo.toml @@ -20,7 +20,7 @@ plotly_image = ["image"] wasm = ["getrandom", "js-sys", "wasm-bindgen", "wasm-bindgen-futures"] [dependencies] -askama = { version = "0.11.0", features = ["serde-json"] } +askama = { version = ">=0.11.0, <0.13.0", features = ["serde-json"] } dyn-clone = "1" erased-serde = "0.3" getrandom = { version = "0.2", features = ["js"], optional = true }