Skip to content

Commit

Permalink
maint: prepare release 0.5.2
Browse files Browse the repository at this point in the history
  • Loading branch information
ManonMarchand committed Nov 13, 2024
1 parent ef7789b commit 9fea6be
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 6 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.5.2]

### Fixed

- in `add_marker`, markers don't use the default icon anymore. Do
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,7 @@ Correspondence table between ipyaladin versions and Aladin Lite versions:
| ipyaladin | Aladin-Lite |
| ---------- | ----------- |
| Unreleased | 3.5.1-beta |
| 0.5.2 | 3.5.1-beta |
| 0.5.1 | 3.5.1-beta |
| 0.5.0 | 3.5.1-beta |
| 0.4.0 | 3.4.4-beta |
Expand Down
2 changes: 1 addition & 1 deletion src/ipyaladin/__about__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
__version__ = "0.5.1"
__version__ = "0.5.2"
__aladin_lite_version__ = "3.5.1-beta"
10 changes: 5 additions & 5 deletions src/ipyaladin/widget.py
Original file line number Diff line number Diff line change
Expand Up @@ -696,7 +696,7 @@ def add_moc_from_URL(
warnings.warn(
"add_moc_from_URL is replaced by add_moc that detects automatically"
"that the MOC was given as an URL."
"This will be removed in version 1.0.0 (coming afer 0.5.1).",
"This will be removed in version 1.0.0 (coming after 0.5).",
DeprecationWarning,
stacklevel=2,
)
Expand All @@ -723,7 +723,7 @@ def add_moc_from_dict(
warnings.warn(
"add_moc_from_dict is replaced by add_moc that detects automatically"
"that the MOC was given as a dictionary."
"This will be removed in version 1.0.0 (coming afer 0.5.1).",
"This will be removed in version 1.0.0 (coming after 0.5).",
DeprecationWarning,
stacklevel=2,
)
Expand Down Expand Up @@ -855,7 +855,7 @@ def add_overlay_from_stcs(
warnings.warn(
"'add_overlay_from_stcs' is deprecated, "
"use 'add_graphic_overlay_from_stcs' instead. "
"This will be removed in version 1.0.0 (coming afer 0.5.1).",
"This will be removed in version 1.0.0 (coming after 0.5).",
DeprecationWarning,
stacklevel=2,
)
Expand Down Expand Up @@ -936,7 +936,7 @@ def rectangular_selection(self) -> None:
"""
warnings.warn(
"rectangular_selection is deprecated, use selection('rectangle') instead"
"This will be removed in version 1.0.0 (coming afer 0.5.1).",
"This will be removed in version 1.0.0 (coming after 0.5).",
DeprecationWarning,
stacklevel=2,
)
Expand Down Expand Up @@ -990,7 +990,7 @@ def add_listener(self, listener_type: str, callback: Callable) -> None:
"""
warnings.warn(
"add_listener is deprecated, use set_listener instead"
"This will be removed in version 1.0.0 (coming afer 0.5.1).",
"This will be removed in version 1.0.0 (coming after 0.5).",
DeprecationWarning,
stacklevel=2,
)
Expand Down

0 comments on commit 9fea6be

Please sign in to comment.