diff --git a/CHANGELOG.md b/CHANGELOG.md index d4abdd5..bf2d825 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,13 @@ +# [Version 1.0.5](https://github.com/Kosmorro/lib/compare/v1.0.4...v1.0.5) (2022-02-21) + + +### Bug Fixes + +* **ephemerides:** fix the rise, culmination and set times being too often `None` ([bbf1b9f](https://github.com/Kosmorro/lib/commit/bbf1b9f53efb8c906e597c9054f90e674d1b7dd9)) +* fix the warning message from `skyfield-data` package about expired data ([f3d39ad](https://github.com/Kosmorro/lib/commit/f3d39ad5bf1d66fcebb4864064111d2f0af87c63)) + + + # [Version 1.0.4](https://github.com/Kosmorro/lib/compare/v1.0.3...v1.0.4) (2022-01-09) diff --git a/kosmorrolib/__version__.py b/kosmorrolib/__version__.py index c32ff66..6a46e13 100644 --- a/kosmorrolib/__version__.py +++ b/kosmorrolib/__version__.py @@ -19,7 +19,7 @@ __title__ = "kosmorrolib" __description__ = "A library to compute your ephemerides" __url__ = "http://kosmorro.space/lib" -__version__ = "1.0.4" +__version__ = "1.0.5" __author__ = "Jérôme Deuchnord" __author_email__ = "jerome@deuchnord.fr" __license__ = "AGPL-v3" diff --git a/pyproject.toml b/pyproject.toml index 344367b..f1430c0 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "kosmorrolib" -version = "1.0.4" +version = "1.0.5" authors = ["Jérôme Deuchnord "] homepage = "https://kosmorro.space/lib" repository = "https://github.com/Kosmorro/lib"