diff --git a/README.md b/README.md index 1a3cf8c9..fcc6eadc 100644 --- a/README.md +++ b/README.md @@ -66,7 +66,9 @@ Versions lookup table: | `ipympl` | `jupyter-matplotlib` | `JupyterLab` | `Matplotlib` | |----------|----------------------|--------------|--------------| -| 0.9.3+ | 0.11.3+ | >=2,<5 | 3.4.0>= | +| 0.9.5 | 0.11.5 | >=2,<5 | >=3.5.0 | +| 0.9.4 | 0.11.4 | >=2,<5 | 3.4.0>= | +| 0.9.3 | 0.11.3 | >=2,<5 | 3.4.0>= | | 0.9.0-2 | 0.11.0-2 | >=2,<5 | 3.4.0>= <3.7| | 0.8.8 | 0.10.x | >=2,<5 | 3.3.1>= <3.7| | 0.8.0-7 | 0.10.x | >=2,<5 | 3.3.1>=, <3.6| diff --git a/RELEASE.md b/RELEASE.md index 4a12ec7e..41ee7d6c 100644 --- a/RELEASE.md +++ b/RELEASE.md @@ -1,11 +1,11 @@ - To release a new version of ipympl on PyPI: +To release a new version of ipympl on PyPI: In your local copy of the repo 1. Switch to the `main` branch 2. Update relevant files - `ipympl/_version.py` - - `src/version.ts` + - `version` at the top of `package.json` - The table in the README - The table in `docs/installing.md` 3. `git commit -m "release X.Y.Z"` diff --git a/docs/installing.md b/docs/installing.md index 3567eb98..36164f78 100644 --- a/docs/installing.md +++ b/docs/installing.md @@ -49,8 +49,10 @@ Not all versions of `ipympl` are compatible with different version of Jupyterlab | `ipympl` | `jupyter-matplotlib` | `JupyterLab` | `Matplotlib` | |----------|----------------------|--------------|--------------| -| 0.9.3 | 0.11.3+ | 3 or 2 | 3.4.0>= | -| 0.9.0-2 | 0.11.0-2 | 3 or 2 | 3.4.0>= <3.7| +| 0.9.5 | 0.11.5 | >=2,<5 | >=3.5.0 | +| 0.9.4 | 0.11.4 | >=2,<5 | 3.4.0>= | +| 0.9.3 | 0.11.3 | >=2,<5 | 3.4.0>= | +| 0.9.0-2 | 0.11.0-2 | >=2,<5 | 3.4.0>= <3.7| | 0.8.8 | 0.10.x | 3 or 2 | 3.3.1>= <3.7| | 0.8.0-7 | 0.10.x | 3 or 2 | 3.3.1>=, <3.6| | 0.7.0 | 0.9.0 | 3 or 2 | 3.3.1>= | diff --git a/ipympl/_version.py b/ipympl/_version.py index a4ae1202..e52d8fcb 100644 --- a/ipympl/_version.py +++ b/ipympl/_version.py @@ -1,3 +1,3 @@ -version_info = (0, 9, 4) +version_info = (0, 9, 5) __version__ = '.'.join(map(str, version_info)) js_semver = '^0.11' diff --git a/package.json b/package.json index b1ba7e0d..0b873b8c 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "jupyter-matplotlib", - "version": "0.11.4", + "version": "0.11.5", "description": "Matplotlib Jupyter Interactive Widget", "author": "Matplotlib Development team", "license": "BSD-3-Clause",