From 9b877ded116730921717ac0e0b16558f873a49d6 Mon Sep 17 00:00:00 2001 From: Patrick Marks Date: Wed, 12 Apr 2023 13:06:01 -0700 Subject: [PATCH 1/3] widen version range of askama --- plotly/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plotly/Cargo.toml b/plotly/Cargo.toml index 42d656e5..8dd0e042 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.12.0", features = ["serde-json"] } dyn-clone = "1" erased-serde = "0.3" getrandom = { version = "0.2", features = ["js"], optional = true } From 7a60310c14e89bef05d061db4c934fa0018396a1 Mon Sep 17 00:00:00 2001 From: Michael Freeborn <31806808+mfreeborn@users.noreply.github.com> Date: Sun, 9 Jul 2023 07:56:33 +0100 Subject: [PATCH 2/3] Update plotly/Cargo.toml Co-authored-by: Adam Azarchs --- plotly/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plotly/Cargo.toml b/plotly/Cargo.toml index 8dd0e042..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, <=0.12.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 } From 6226107867496ccadf1802ed2a27ff02da860fd4 Mon Sep 17 00:00:00 2001 From: Michael Freeborn Date: Sun, 9 Jul 2023 11:22:31 +0100 Subject: [PATCH 3/3] update CHANGELOG --- CHANGELOG.md | 3 +++ 1 file changed, 3 insertions(+) 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.