Skip to content

Commit 5aa8c16

Browse files
release process for 4.5.2
1 parent da19326 commit 5aa8c16

File tree

10 files changed

+1017
-1015
lines changed

10 files changed

+1017
-1015
lines changed

CHANGELOG.md

+8-6
Original file line numberDiff line numberDiff line change
@@ -2,12 +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+
## [4.5.2] - 2020-02-24
6+
7+
### Fixed
8+
9+
- Fix build errors in JupyterLab extension by pinning version of `@types/plotly.js` (#2223)(https://github.com/plotly/plotly.py/issues/2223)
10+
511
## [4.5.1] - 2020-02-19
612

713
### Updated
8-
- Updated Plotly.js to version 1.52.2. See the
9-
[plotly.js CHANGELOG](https://github.com/plotly/plotly.js/releases/tag/v1.52.2)
10-
for more information on bug fixes.
14+
- Updated Plotly.js to version 1.52.2. See the [plotly.js CHANGELOG](https://github.com/plotly/plotly.js/releases/tag/v1.52.2) for more information on bug fixes.
1115

1216
### Fixed
1317

@@ -21,9 +25,7 @@ This project adheres to [Semantic Versioning](http://semver.org/).
2125
## [4.5.0] - 2020-01-22
2226

2327
### Updated
24-
- Updated Plotly.js to version 1.52.1. See the
25-
[plotly.js CHANGELOG](https://github.com/plotly/plotly.js/blob/v1.52.0/CHANGELOG.md#1520----2020-01-08)
26-
for more information on numerous new attribute and bug fixes.
28+
- Updated Plotly.js to version 1.52.1. See the [plotly.js CHANGELOG](https://github.com/plotly/plotly.js/blob/v1.52.0/CHANGELOG.md#1520----2020-01-08) for more information on numerous new attribute and bug fixes.
2729
- Plotly Express uses the new `legend.title` attribute and so now has shorter trace `name`s [#2051](https://github.com/plotly/plotly.py/pull/2051)
2830
- The heuristic used by `px.parallel_categories` to determine which columns of the data frame to draw has been changed and made more configurable with the `dimensions_max_cardinality` argument [#2102](https://github.com/plotly/plotly.py/pull/2102)
2931
- The `simple_white` colorbar styling has been streamlined [#2110](https://github.com/plotly/plotly.py/pull/2110)

README.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626

2727
## Quickstart
2828

29-
`pip install plotly==4.5.1`
29+
`pip install plotly==4.5.2`
3030

3131
Inside [Jupyter notebook](https://jupyter.org/install) (installable with `pip install "notebook>=5.3" "ipywidgets>=7.2"`):
3232

@@ -75,13 +75,13 @@ Built on top of [plotly.js](https://github.com/plotly/plotly.js), `plotly.py` is
7575
plotly.py may be installed using pip...
7676

7777
```
78-
pip install plotly==4.5.1
78+
pip install plotly==4.5.2
7979
```
8080

8181
or conda.
8282

8383
```
84-
conda install -c plotly plotly=4.5.1
84+
conda install -c plotly plotly=4.5.2
8585
```
8686

8787
### Jupyter Notebook Support
@@ -128,10 +128,10 @@ set NODE_OPTIONS=--max-old-space-size=4096
128128
jupyter labextension install @jupyter-widgets/[email protected] --no-build
129129
130130
# FigureWidget support
131-
jupyter labextension install [email protected].1 --no-build
131+
jupyter labextension install [email protected].2 --no-build
132132
133133
# and jupyterlab renderer support
134-
jupyter labextension install [email protected].1 --no-build
134+
jupyter labextension install [email protected].2 --no-build
135135
136136
# Build extensions (must be done to activate extensions since --no-build is used above)
137137
jupyter lab build

contributing.md

+7-7
Original file line numberDiff line numberDiff line change
@@ -265,10 +265,10 @@ specified below.
265265
+ Update `__frontend_version__` to `^A.B.C-rc.1` (Note the `^` prefix)
266266
- `packages/javascript/plotlywidget/package.json`
267267
+ Update `"version"` to `A.B.C-rc.1`
268-
+ Run `npm install && npm build`
268+
+ Run `npm install && npm run build`
269269
- `packages/javascript/jupyterlab-plotly/package.json`
270270
+ Update `"version"` to `A.B.C-rc.1`
271-
+ Run `npm install && npm build`
271+
+ Run `npm install && npm run build`
272272

273273
2) Commit the changes
274274

@@ -315,7 +315,7 @@ Now, publish the release candidate of the `plotlywidget` NPM package.
315315

316316
```bash
317317
cd ./packages/javascript/plotlywidget
318-
npm build && npm publish --access public --tag next
318+
npm run build && npm publish --access public --tag next
319319
```
320320

321321
The `--tag next` part ensures that users won't install this version unless
@@ -379,10 +379,10 @@ release candidate suffix from the following version strings:
379379
+ Update `__frontend_version__` to `^A.B.C` (Note the `^` prefix)
380380
- `packages/javascript/plotlywidget/package.json`
381381
+ Update `"version"` to `A.B.C`
382-
+ Run `npm install && npm build`
382+
+ Run `npm install && npm run build`
383383
- `packages/javascript/jupyterlab-plotly/package.json`
384384
+ Update `"version"` to `A.B.C`
385-
+ Run `npm install && npm build`
385+
+ Run `npm install && npm run build`
386386

387387
Commit and push to the release branch.
388388

@@ -434,9 +434,9 @@ Finally, publish the final version of the widget library to npm with:
434434

435435
```bash
436436
cd packages/javascript/jupyterlab-plotly
437-
npm build && npm publish --access public
437+
npm run build && npm publish --access public
438438
cd packages/javascript/plotlywidget
439-
npm build && npm publish --access public
439+
npm run build && npm publish --access public
440440
```
441441

442442
### Publishing to the plotly conda channel

doc/python/getting-started.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -49,13 +49,13 @@ Thanks to deep integration with the [orca](https://github.com/plotly/orca) image
4949
plotly.py may be installed using pip...
5050

5151
```
52-
$ pip install plotly==4.5.1
52+
$ pip install plotly==4.5.2
5353
```
5454

5555
or conda.
5656

5757
```
58-
$ conda install -c plotly plotly=4.5.1
58+
$ conda install -c plotly plotly=4.5.2
5959
```
6060

6161
This package contains everything you need to write figures to standalone HTML files.
@@ -144,10 +144,10 @@ set NODE_OPTIONS=--max-old-space-size=4096
144144
jupyter labextension install @jupyter-widgets/[email protected] --no-build
145145
146146
# jupyterlab renderer support
147-
jupyter labextension install [email protected].1 --no-build
147+
jupyter labextension install [email protected].2 --no-build
148148
149149
# FigureWidget support
150-
jupyter labextension install [email protected].1 --no-build
150+
jupyter labextension install [email protected].2 --no-build
151151
152152
# Build extensions (must be done to activate extensions since --no-build is used above)
153153
jupyter lab build

0 commit comments

Comments
 (0)