From 1c98fe8cea81f91ead433a147583af2360421cd1 Mon Sep 17 00:00:00 2001 From: MARCHAND MANON Date: Thu, 19 Sep 2024 17:30:33 +0200 Subject: [PATCH] maint: prepare release 0.5.0 --- CHANGELOG.md | 23 ++++++++++++++--------- README.md | 1 + src/ipyaladin/__about__.py | 2 +- 3 files changed, 16 insertions(+), 10 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 79a5045..6a0a2bc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -16,21 +16,26 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.5.0] + ### Added -- Allow WCS and 2 axis FoV recovery from `wcs` and `fov_xy` properties (#96) -- monochromatic FITS images can be added to the view with `ipyaladin.Aladin.add_fits`. - The method accepts `astropy.io.fits.HDUList`, `pathlib.Path`, or `string` representing paths (#86) -- New way to make a selection on the view with `selection` method (#100) -- Add selected sources export as `astropy.Table` list with property `selected_objects` (#100) -- Add function `get_view_as_fits` to export the view as a `astropy.io.fits.HDUList` (#98) -- Add function `save_view_as_image` to save the view as an image file (#108) +- Reading WCS and FOV from `wcs` and `fov_xy` properties (#96) +- FITS images can be added to the view with `ipyaladin.Aladin.add_fits`. + The method accepts `astropy.io.fits.HDUList`, `pathlib.Path`, or `string` representing + paths (#86) +- New `selection` method replaces `rectangular selection` and also has a circular + selection option (#100) +- Selected sources are exported as an `astropy.Table` list in the property + `selected_objects` (#100) +- new `get_view_as_fits` exports the view as a `astropy.io.fits.HDUList` (#98) +- new `save_view_as_image` saves the view as an image file (#108) - Support planetary objects for ipyaladin targets (#103) -- new method `add_marker` to add a marker to the view (#111) +- new method `add_marker` to add marker(s) to the view (#111) ### Deprecated -- Deprecate `rectangular_selection` method in favor of `selection` method (#100) +- Deprecated `rectangular_selection` method in favor of `selection` (#100) ### Changed diff --git a/README.md b/README.md index 867f84c..4391e15 100644 --- a/README.md +++ b/README.md @@ -69,6 +69,7 @@ Correspondence table between ipyaladin versions and Aladin Lite versions: | ipyaladin | Aladin-Lite | | ---------- | ----------- | | Unreleased | 3.5.1-beta | +| 0.5.0 | 3.5.1-beta | | 0.4.0 | 3.4.4-beta | | 0.3.0 | 3.3.3-dev | diff --git a/src/ipyaladin/__about__.py b/src/ipyaladin/__about__.py index 5d7c8e4..55d8c67 100644 --- a/src/ipyaladin/__about__.py +++ b/src/ipyaladin/__about__.py @@ -1,2 +1,2 @@ -__version__ = "0.4.0" +__version__ = "0.5.0" __aladin_lite_version__ = "3.5.1-beta"