From 522475572276cc6f224587e4275d7564ab123b13 Mon Sep 17 00:00:00 2001 From: Brandon Rhodes Date: Wed, 7 Feb 2024 09:06:36 -0500 Subject: [PATCH] Declare version 1.48 --- CHANGELOG.rst | 11 +++++++---- skyfield/__init__.py | 2 +- 2 files changed, 8 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 97c558ebc..1bc0dc3fd 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -9,11 +9,10 @@ Changelog Released versions ----------------- -Next version ------------- +v1.48 — 2024 February 7 +----------------------- -* Times now support the ``<`` operator, which also means that Python can - sort them. +* Times now support the ``<`` operator, so Python can sort them. * For convenience, geoids like :data:`~skyfield.toposlib.wgs84` have a new attribute :data:`~skyfield.toposlib.Geoid.polar_radius`. @@ -23,6 +22,10 @@ Next version always been performed when you subtract vector functions, but it was missing from the position subtraction routine. +* On days that the Sun fails to rise and set in the Arctic and + Antarctic, the new rising and setting routines now correctly set the + value ``False`` not only for sunrise but also for sunset. + v1.47 — 2024 January 13 ----------------------- diff --git a/skyfield/__init__.py b/skyfield/__init__.py index 6bb2b087c..ed9b7b837 100644 --- a/skyfield/__init__.py +++ b/skyfield/__init__.py @@ -5,5 +5,5 @@ the source code, as well as the http://rhodesmill.org/skyfield/ site! """ -VERSION = 1, 47 +VERSION = 1, 48 __version__ = '.'.join(map(str, VERSION))