diff --git a/CHANGELOG.md b/CHANGELOG.md index c945db77..5501738d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -14,6 +14,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 * **Fixed** for any bug fixes. * **Security** in case of vulnerabilities. +## [0.2.3] + +### Changed + +* ipywidgets >= 8.0.6 install dependency +* ipyaladin compatible jupyterlab 4 and python 3.11 + ## [0.2.2] ### Added diff --git a/README.md b/README.md index a7db7c18..e2da6b51 100644 --- a/README.md +++ b/README.md @@ -38,7 +38,7 @@ Additionny, for a jupyterlab usage you will need to: There is also a conda package that can be installed with: - conda install -c bmatthieu3 ipyaladin==0.2.2 + conda install -c bmatthieu3 ipyaladin==0.2.3 ## New features corner diff --git a/conda-recipe/meta.yaml b/conda-recipe/meta.yaml index a137425b..3802e02a 100644 --- a/conda-recipe/meta.yaml +++ b/conda-recipe/meta.yaml @@ -1,5 +1,5 @@ {% set name = "ipyaladin" %} -{% set version = "0.2.2" %} +{% set version = "0.2.3" %} package: name: "{{ name|lower }}" diff --git a/conda-recipe/readme b/conda-recipe/readme index a4337d4b..dc0ade51 100644 --- a/conda-recipe/readme +++ b/conda-recipe/readme @@ -18,9 +18,9 @@ conda skeleton pypi --extra-specs jupyter-packaging ipyaladin // change the meta.yaml in ipyaladin/ cp post-link.* pre-unlink.* ipyaladin conda build ipyaladin --output-folder distrib -conda convert --platform all distrib/linux-64/ipyaladin-0.2.2-py39_0.tar.bz2 -o distrib +conda convert --platform all distrib/linux-64/ipyaladin-0.2.3-py39_0.tar.bz2 -o distrib anaconda login -anaconda upload distrib/osx-64/ipyaladin-0.2.2-py39_0.tar.bz2 -anaconda upload distrib/linux-64/ipyaladin-0.2.2-py39_0.tar.bz2 +anaconda upload distrib/osx-64/ipyaladin-0.2.3-py39_0.tar.bz2 +anaconda upload distrib/linux-64/ipyaladin-0.2.3-py39_0.tar.bz2 rm -r distrib ipyaladin \ No newline at end of file diff --git a/ipyaladin/_version.py b/ipyaladin/_version.py index e4eeb1ca..3da27944 100644 --- a/ipyaladin/_version.py +++ b/ipyaladin/_version.py @@ -1,4 +1,4 @@ # Module version -__version__ = '0.2.2' +__version__ = '0.2.3' -NPM_PACKAGE_RANGE='^0.2.2' +NPM_PACKAGE_RANGE='^0.2.3' \ No newline at end of file diff --git a/js/lib/jupyter-aladin.js b/js/lib/jupyter-aladin.js index 8d6966c7..cfdba384 100644 --- a/js/lib/jupyter-aladin.js +++ b/js/lib/jupyter-aladin.js @@ -64,8 +64,8 @@ export class AladinModel extends DOMWidgetModel { _model_module : 'ipyaladin', _view_module : 'ipyaladin', - _model_module_version : '0.2.2', - _view_module_version : '0.2.2', + _model_module_version : '0.2.3', + _view_module_version : '0.2.3', }; } } diff --git a/js/package.json b/js/package.json index 0dce6491..0e7bbbdb 100644 --- a/js/package.json +++ b/js/package.json @@ -1,6 +1,6 @@ { "name": "ipyaladin", - "version": "0.2.2", + "version": "0.2.3", "description": "ipyaladin", "author": "Thomas Boch, Jerome Desroziers and Matthieu Baumann", "license": "BSD-3-Clause", diff --git a/setup.cfg b/setup.cfg index 859bbe67..9a189893 100644 --- a/setup.cfg +++ b/setup.cfg @@ -27,9 +27,11 @@ classifiers = Programming Language :: Python :: 3.8 Programming Language :: Python :: 3.9 Programming Language :: Python :: 3.10 + Programming Language :: Python :: 3.11 Framework :: Jupyter Framework :: Jupyter :: JupyterLab Framework :: Jupyter :: JupyterLab :: 3 + Framework :: Jupyter :: JupyterLab :: 4 Framework :: Jupyter :: JupyterLab :: Extensions Framework :: Jupyter :: JupyterLab :: Extensions :: Prebuilt @@ -38,5 +40,5 @@ zip_safe = False include_package_data = True packages = find: install_requires = - ipywidgets>=7.6.0,<9 + ipywidgets>=8.0.6,<9 python_requires = >=3.7