Skip to content

Commit 0e46327

Browse files
committed
Version bump.
1 parent 73c8c00 commit 0e46327

File tree

4 files changed

+13
-4
lines changed

4 files changed

+13
-4
lines changed

.circleci/config.yml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,13 @@ jobs:
1010

1111
steps:
1212
- checkout
13+
14+
- run:
15+
name: Write deps cache key
16+
command: cat "$REQUIREMENTS_FILE" > reqs.txt
17+
1318
- restore_cache:
14-
key: deps1-{{ .Branch }}-{{ checksum "dev-requirements.txt" }}
19+
key: deps1-{{ .Branch }}-{{ checksum "reqs.txt" }}
1520

1621
- run:
1722
name: Install dependencies
@@ -22,7 +27,7 @@ jobs:
2227
pip install -r $REQUIREMENTS_FILE
2328
2429
- save_cache:
25-
key: deps1-{{ .Branch }}-{{ checksum "dev-requirements.txt" }}
30+
key: deps1-{{ .Branch }}-{{ checksum "reqs.txt" }}
2631
paths:
2732
- "venv"
2833

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 0.25.1 - 2018-08-20
2+
## Fixed
3+
- Ensure CSS/JS external resources are loaded before the assets. [#335](https://github.com/plotly/dash/pull/335)
4+
15
## 0.25.0 - 2018-08-14
26
## Added
37
- Take configs values from init or environ variables (Prefixed with `DASH_`). [#322](https://github.com/plotly/dash/pull/322)

dash/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = '0.25.0'
1+
__version__ = '0.25.1'

dev-requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
dash_core_components>=0.4.0
1+
dash_core_components>=0.27.1
22
dash_html_components>=0.12.0rc3
33
dash_flow_example==0.0.3
44
dash-dangerously-set-inner-html

0 commit comments

Comments
 (0)