From 8568403180dd1705d717e8af48a3b7c5499f7905 Mon Sep 17 00:00:00 2001 From: Philippe Duval Date: Tue, 14 Aug 2018 10:47:01 -0400 Subject: [PATCH] Update version and CHANGELOG. --- CHANGELOG.md | 11 +++++++++++ dash/version.py | 2 +- 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 18cb569800..e28709da69 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,14 @@ +## 0.25.0 - 2018-08-14 +## Added +- Take configs values from init or environ variables (Prefixed with `DASH_`). [#322](https://github.com/plotly/dash/pull/322) + +## Fixed +- Take `requests_pathname_prefix` config when creating scripts tags. +- `requests/routes_pathname_prefix` must starts and end with `/`. +- `requests_pathname_prefix` must ends with `routes_pathname_prefix`. If you supplied both `requests` and `routes` pathname before this update, make sure `requests_pathname_prefix` ends with the same value as `routes_pathname_prefix`. +- `url_base_pathname` set both `requests/routes` pathname, cannot supply it with either `requests` or `routes` pathname prefixes. + + ## 0.24.2 - 2018-08-13 ## Fixed - Disallow duplicate component ids in the initial layout. [#320](https://github.com/plotly/dash/pull/320) diff --git a/dash/version.py b/dash/version.py index d1d123f305..8c308d7234 100644 --- a/dash/version.py +++ b/dash/version.py @@ -1 +1 @@ -__version__ = '0.24.2' +__version__ = '0.25.0'