Skip to content

Commit 6493231

Browse files
Declare version 1.52
1 parent f7da371 commit 6493231

File tree

2 files changed

+14
-8
lines changed

2 files changed

+14
-8
lines changed

CHANGELOG.rst

+13-7
Original file line numberDiff line numberDiff line change
@@ -9,22 +9,28 @@ Changelog
99
Released versions
1010
-----------------
1111

12-
Unreleased future version
13-
-------------------------
12+
v1.52 — 2025 March 18
13+
---------------------
14+
15+
* Fix: on rare occasions the :func:`~skyfield.almanac.find_risings()`
16+
and :func:`~skyfield.almanac.find_settings()` routines could return an
17+
invalid result if no rising or setting was found, instead of returning
18+
the moment of transit as their fallback result.
19+
`#1057 <https://github.com/skyfielders/python-skyfield/issues/1057>`_
1420

1521
* Fix: if the :meth:`~skyfield.positionlib.ICRF.altaz()` method was
16-
given a position with a NaN coordinate and ``temperature_C`` and
17-
``pressure_mbar`` parameters with which to compute refraction, then it
18-
would loop forever.
22+
given a position with a NaN coordinate, and was passed
23+
``temperature_C`` and ``pressure_mbar`` parameters with which to
24+
compute refraction, then it would loop forever.
1925
`#1046 <https://github.com/skyfielders/python-skyfield/issues/1046>`_
2026

2127
* Fix: the new :class:`~skyfield.framelib.mean_equator_and_equinox_of_date`
2228
reference frame was off by nearly 0.02 arcseconds because it applied
2329
precession but forgot to apply the frame tie between ICRS and J2000.
2430

2531
* To avoid deprecation warnings on recent Pythons, Skyfield now avoids
26-
Python’s old ``datetime.utcnow()`` method, and avoids applying the
27-
``~`` unary operator.
32+
Python’s ``datetime.utcnow()`` method, and avoids applying the ``~``
33+
unary operator.
2834

2935
v1.51 — 2025 February 23
3036
------------------------

skyfield/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,5 @@
55
read the same content in the ``documentation`` directory in the repo.
66
77
"""
8-
VERSION = 1, 51
8+
VERSION = 1, 52
99
__version__ = '.'.join(map(str, VERSION))

0 commit comments

Comments
 (0)