diff --git a/README.md b/README.md index 7088b0b3..eed0002c 100644 --- a/README.md +++ b/README.md @@ -66,23 +66,23 @@ Versions lookup table: | `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.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>= | -| 0.6.x | 0.8.x | 3 or 2 | 3.3.1>=, <3.4| -| 0.5.8 | 0.7.4 | 1 or 2 | 3.3.1>=, <3.4| -| 0.5.7 | 0.7.3 | 1 or 2 | 3.2.* | +| 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| +| 0.7.0 | 0.9.0 | >=2,<5 | 3.3.1>= | +| 0.6.x | 0.8.x | >=2,<5 | 3.3.1>=, <3.4| +| 0.5.8 | 0.7.4 | >=1,<3 | 3.3.1>=, <3.4| +| 0.5.7 | 0.7.3 | >=1,<3 | 3.2.* | | ... | ... | ... | | -| 0.5.3 | 0.7.2 | 1 or 2 | | -| 0.5.2 | 0.7.1 | 1 | | -| 0.5.1 | 0.7.0 | 1 | | -| 0.5.0 | 0.6.0 | 1 | | -| 0.4.0 | 0.5.0 | 1 | | -| 0.3.3 | 0.4.2 | 1 | | -| 0.3.2 | 0.4.1 | 1 | | -| 0.3.1 | 0.4.0 | 0 or 1 | | +| 0.5.3 | 0.7.2 | >=1,<3 | | +| 0.5.2 | 0.7.1 | >=1,<2 | | +| 0.5.1 | 0.7.0 | >=1,<2 | | +| 0.5.0 | 0.6.0 | >=1,<2 | | +| 0.4.0 | 0.5.0 | >=1,<2 | | +| 0.3.3 | 0.4.2 | >=1,<2 | | +| 0.3.2 | 0.4.1 | >=1,<2 | | +| 0.3.1 | 0.4.0 | >=0<2 | | ### For a development installation (requires nodejs): diff --git a/ipympl/_version.py b/ipympl/_version.py index e477f98f..a4ae1202 100644 --- a/ipympl/_version.py +++ b/ipympl/_version.py @@ -1,3 +1,3 @@ -version_info = (0, 9, 4, "dev", 1) +version_info = (0, 9, 4) __version__ = '.'.join(map(str, version_info)) js_semver = '^0.11' diff --git a/package.json b/package.json index c8f3d707..b1ba7e0d 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "jupyter-matplotlib", - "version": "0.11.3", + "version": "0.11.4", "description": "Matplotlib Jupyter Interactive Widget", "author": "Matplotlib Development team", "license": "BSD-3-Clause",