diff --git a/CHANGELOG.md b/CHANGELOG.md index 02b7f2c..6fbdeb2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,15 @@ # `cdshealpix-python` Change Log +## 0.6.5 + +Released 2023-11-28 + +### Changed + +* supported python versions are now from 3.8 to 3.12. For python 3.8, the astropy dependency is fixed to <5.3. +This will prevent from using new functionalities of astropy until python 3.8 end of life. [#18] +* the documentation now have a section for notebooks in the examples [#19] + ## 0.6.4 Released 2023-02-27 @@ -11,7 +21,7 @@ This release is mostly documentation and CI improvements * docstring update for ``bilinear_interpolation`` to highlight counter-intuitive use of False and True in ``np.mask``. * new extended example in documentation for coordinate system rotation using the pixel method * adopted black codestyle -* BUGFIX : ``from_ring`` doctring example is fixed +* BUGFIX : ``from_ring`` doctring example is fixed ### Fix diff --git a/Cargo.toml b/Cargo.toml index 70de70e..c9779f7 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,11 +1,11 @@ [package] name = "cdshealpix" -version = "0.6.4" +version = "0.6.5" authors = ["Matthieu Baumann ", "F.-X. Pineau "] description = "Python cdshealpix package wrapping code of the cdshealpix crate" license = "BSD-3-Clause" readme = "README.md" -categories = ["algorithms", "science"] +categories = ["algorithms", "science"] keywords = ["healpix", "astronomy"] documentation = "https://cds-astro.github.io/cds-healpix-python" homepage = "https://github.com/cds-astro/cds-healpix-python" @@ -20,7 +20,7 @@ name = "cdshealpix" crate-type = ["cdylib"] [dependencies] -healpix = { package = "cdshealpix", version = "0.6.4" } +healpix = { package = "cdshealpix", version = "0.6.5" } rayon = "1.5.3" [dependencies.numpy] diff --git a/python/cdshealpix/version.py b/python/cdshealpix/version.py index 364e7ba..7bbb2ef 100644 --- a/python/cdshealpix/version.py +++ b/python/cdshealpix/version.py @@ -1 +1 @@ -__version__ = "0.6.4" +__version__ = "0.6.5"