Skip to content

Commit 782c130

Browse files
committed
update CHANGELOG and makefile function name and syntax
1 parent 5c4fc3b commit 782c130

File tree

3 files changed

+18
-7
lines changed

3 files changed

+18
-7
lines changed

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,16 @@
22
All notable changes to this project will be documented in this file.
33
This project adheres to [Semantic Versioning](http://semver.org/).
44

5+
## [1.12.3] - 2016-06-30
6+
### Updated
7+
- Updated `plotly.min.js` from 1.13.0 to 1.14.1
8+
- Numerous additions and changes where made to the mapbox layout layers attributes
9+
- Attribute line.color in scatter3d traces now support color scales
10+
- Layout shapes can now be moved and resized (except for 'path' shapes) in editable contexts
11+
- See [the plotly.js CHANGELOG](https://github.com/plotly/plotly.js/blob/master/CHANGELOG.md#1141----2016-06-28) for additional information regarding the updates
12+
- Added `update_plotlyjs_for_offline` in makefile in order to automate updating `plotly.min.js` for offline mode
13+
- Updated `default-schema`
14+
515
## [1.12.2] - 2016-06-20
616
### Updated
717
- Updated plotly.min.js so the offline mode is using plotly.js v1.13.0

makefile

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -58,15 +58,15 @@ pull_chunked : submodules/chunked_requests
5858
@echo "Pulling down updates from chunked_requests"
5959
cd submodules/chunked_requests; git pull origin master
6060

61-
update_offline :
61+
update_plotlyjs_for_offline :
6262
@echo "Updating plotly.js for Offline Mode"
6363
@echo "------------------"
6464
python -c "import urllib2;\
65-
cdn_url = 'https://cdn.plot.ly/plotly-latest.min.js';\
66-
response = urllib2.urlopen(cdn_url);\
67-
html = response.read();\
68-
f = open('./plotly/offline/plotly.min.js', 'w');\
69-
f.write(html);\
70-
f.close()"
65+
cdn_url = 'https://cdn.plot.ly/plotly-latest.min.js';\
66+
response = urllib2.urlopen(cdn_url);\
67+
html = response.read();\
68+
f = open('./plotly/offline/plotly.min.js', 'w');\
69+
f.write(html);\
70+
f.close()"
7171
@echo "---------------------------------"
7272
@echo "Remember to update the CHANGELOG!"

optional-requirements.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,3 +22,4 @@ pandas
2222

2323
## scipy deps for some FigureFactory functions ##
2424
scipy
25+

0 commit comments

Comments
 (0)