Skip to content

Commit

Permalink
Release 0.9.5
Browse files Browse the repository at this point in the history
  • Loading branch information
ianthomas23 committed Dec 17, 2024
1 parent 52f01d1 commit efd2e5c
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 7 deletions.
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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|
Expand Down
4 changes: 2 additions & 2 deletions RELEASE.md
Original file line number Diff line number Diff line change
@@ -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"`
Expand Down
6 changes: 4 additions & 2 deletions docs/installing.md
Original file line number Diff line number Diff line change
Expand Up @@ -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>= |
Expand Down
2 changes: 1 addition & 1 deletion ipympl/_version.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
version_info = (0, 9, 4)
version_info = (0, 9, 5)
__version__ = '.'.join(map(str, version_info))
js_semver = '^0.11'
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down

0 comments on commit efd2e5c

Please sign in to comment.