Declare version 1.24

This commit is contained in:
Brandon Rhodes 2020-07-20 21:40:23 -04:00
parent cf94de371d
commit 9462af0f4e
2 changed files with 4 additions and 4 deletions

View File

@ -2,13 +2,13 @@
Changelog
=========
1.24 — The future
-----------------
1.24 — 2020 July 20
-------------------
* Added methods :meth:`~skyfield.timelib.Timescale.from_datetime()` and
:meth:`~skyfield.timelib.Timescale.from_datetimes()` to the
:class:`~skyfield.timelib.Timescale` class, to better advertise the
ability to build a Skyfield time from a Python datetime — an ability
ability to build a Skyfield time from a Python ``datetime`` — an ability
that was previously overloaded into the ``year`` parameter of the
:meth:`~skyfield.timelib.Timescale.utc()` method (where it is still
supported for backwards compatibility, but no longer documented).

View File

@ -5,5 +5,5 @@ functions and classes there. See the ``documentation`` directory inside
the source code, as well as the http://rhodesmill.org/skyfield/ site!
"""
VERSION = (1, 23)
VERSION = (1, 24)
__version__ = '.'.join(map(str, VERSION))