Skip to content

Commit 1c99b99

Browse files
release 4.5.4
1 parent ca40551 commit 1c99b99

File tree

9 files changed

+32
-25
lines changed

9 files changed

+32
-25
lines changed

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.3`
29+
`pip install plotly==4.5.4`
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.3
78+
pip install plotly==4.5.4
7979
```
8080

8181
or conda.
8282

8383
```
84-
conda install -c plotly plotly=4.5.3
84+
conda install -c plotly plotly=4.5.4
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].3 --no-build
131+
jupyter labextension install [email protected].4 --no-build
132132
133133
# and jupyterlab renderer support
134-
jupyter labextension install [email protected].3 --no-build
134+
jupyter labextension install [email protected].4 --no-build
135135
136136
# Build extensions (must be done to activate extensions since --no-build is used above)
137137
jupyter lab build

contributing.md

+15-8
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Contributing
22

3-
Thank you for contributing to plotly.py!
3+
Thank you for contributing to plotly.py!
44

55
## Code of Conduct
66

@@ -271,10 +271,12 @@ specified below.
271271
+ Update `__frontend_version__` to `^A.B.C-rc.1` (Note the `^` prefix)
272272
- `packages/javascript/plotlywidget/package.json`
273273
+ Update `"version"` to `A.B.C-rc.1`
274-
+ Run `npm install && npm run build`
274+
+ Ensure you're using `node` version 8 and `npm` version 6 to minimize diffs to `package-lock.json`
275+
+ Run `rm -rf node_modules && npm install && npm run build`
275276
- `packages/javascript/jupyterlab-plotly/package.json`
276277
+ Update `"version"` to `A.B.C-rc.1`
277-
+ Run `npm install && npm run build`
278+
+ Ensure you're using `node` version 8 and `npm` version 6 to minimize diffs to `package-lock.json`
279+
+ Run `rm -rf node_modules && npm install && npm run build`
278280

279281
2) Commit the changes
280282

@@ -375,7 +377,9 @@ Update CHANGELOG with release date and update README with final versions.
375377
In the conda installation instructions, be sure to change the
376378
"-c plotly/label/test" argument to "-c plotly"
377379

378-
Commit updates.
380+
Update the doc/python/getting-started.md file with the same version numbers.
381+
382+
Commit Changelog, README and getting-started updates.
379383

380384
### Finalize versions
381385
When no problems are identified in the release candidate, remove the
@@ -385,12 +389,15 @@ release candidate suffix from the following version strings:
385389
+ Update `__frontend_version__` to `^A.B.C` (Note the `^` prefix)
386390
- `packages/javascript/plotlywidget/package.json`
387391
+ Update `"version"` to `A.B.C`
388-
+ Run `npm install && npm run build`
392+
+ Ensure you're using `node` version 8 and `npm` version 6 to minimize diffs to `package-lock.json`
393+
+ Run `rm -rf node_modules && npm install && npm run build`
389394
- `packages/javascript/jupyterlab-plotly/package.json`
390395
+ Update `"version"` to `A.B.C`
391-
+ Run `npm install && npm run build`
392-
393-
Commit and push to the release branch.
396+
+ Ensure you're using `node` version 8 and `npm` version 6 to minimize diffs to `package-lock.json`
397+
+ Run `rm -rf node_modules && npm install && npm run build`
398+
- Run `git diff` and ensure that only the files you modified and the build artifacts have changed
399+
- Ensure that the diff in `package-lock.json` seems sane
400+
- Commit and push to the release branch.
394401

395402
### Merge release into master
396403
Make sure the integration tests are passing on the release branch, then merge

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.3
52+
$ pip install plotly==4.5.4
5353
```
5454

5555
or conda.
5656

5757
```
58-
$ conda install -c plotly plotly=4.5.3
58+
$ conda install -c plotly plotly=4.5.4
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].3 --no-build
147+
jupyter labextension install [email protected].4 --no-build
148148
149149
# FigureWidget support
150-
jupyter labextension install [email protected].3 --no-build
150+
jupyter labextension install [email protected].4 --no-build
151151
152152
# Build extensions (must be done to activate extensions since --no-build is used above)
153153
jupyter lab build

packages/javascript/jupyterlab-plotly/package-lock.json

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/javascript/jupyterlab-plotly/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "jupyterlab-plotly",
3-
"version": "1.5.3",
3+
"version": "1.5.4",
44
"description": "The plotly JupyterLab extension",
55
"author": "The plotly.py team",
66
"license": "MIT",

packages/javascript/plotlywidget/package-lock.json

+3-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/javascript/plotlywidget/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "plotlywidget",
3-
"version": "1.5.3",
3+
"version": "1.5.4",
44
"description": "The plotly JupyterLab extension",
55
"author": "The plotly.py team",
66
"license": "MIT",

packages/python/plotly/plotly/_widget_version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
# for automated dev builds
33
#
44
# It is edited by hand prior to official releases
5-
__frontend_version__ = "1.5.3"
5+
__frontend_version__ = "1.5.4"

packages/python/plotly/plotlywidget/static/index.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)