Skip to content

Commit

Permalink
edit version number before release
Browse files Browse the repository at this point in the history
  • Loading branch information
ManonMarchand committed Nov 28, 2023
1 parent 02940e9 commit cb81dd3
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 5 deletions.
12 changes: 11 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand All @@ -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

Expand Down
6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
[package]
name = "cdshealpix"
version = "0.6.4"
version = "0.6.5"
authors = ["Matthieu Baumann <[email protected]>", "F.-X. Pineau <[email protected]>"]
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"
Expand All @@ -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]
Expand Down
2 changes: 1 addition & 1 deletion python/cdshealpix/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.6.4"
__version__ = "0.6.5"

0 comments on commit cb81dd3

Please sign in to comment.