diff --git a/CITATION.cff b/CITATION.cff index cf4a5009..1998581d 100644 --- a/CITATION.cff +++ b/CITATION.cff @@ -20,5 +20,5 @@ keywords: - graphs - plotting license: MIT -version: 0.20.1 -date-released: '2026-03-10' +version: 0.20.2 +date-released: '2026-03-31' diff --git a/docs/changelog.md b/docs/changelog.md index b7f471f9..c67bd3df 100644 --- a/docs/changelog.md +++ b/docs/changelog.md @@ -11,7 +11,7 @@ - [**v0.20.1**] - Optimizes coordinate conversions - Makes constellation lines straight - +- [**v0.20.2**] Restricts Pandas to version `2.2.3` or lower ## v0.19.x [Documentation](https://archives.starplot.dev/0.19.6/) diff --git a/pyproject.toml b/pyproject.toml index c47bbcc0..863784f1 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -21,7 +21,7 @@ keywords = ["astronomy", "stars", "charts", "maps", "constellations", "sky", "pl dependencies = [ "matplotlib >= 3.8.0", "numpy >= 1.26.2", - "pandas >= 1.4.0", + "pandas <= 2.2.3", "pydantic >= 2.10.6", "shapely >= 2.0.1", "skyfield >= 1.41", diff --git a/src/starplot/__init__.py b/src/starplot/__init__.py index 16ce17a5..2b65fcce 100644 --- a/src/starplot/__init__.py +++ b/src/starplot/__init__.py @@ -2,7 +2,7 @@ """Star charts and maps of the sky""" -__version__ = "0.20.1" +__version__ = "0.20.2" from .plots import ( MapPlot,