diff --git a/CHANGELOG.md b/CHANGELOG.md index b5e17b43..0eca9517 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) for the PR. 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 }