Update changelog and declare 1.23

This commit is contained in:
Brandon Rhodes 2020-07-09 15:11:05 -04:00
parent 1bec4666f2
commit b4efc4f06a
2 changed files with 7 additions and 3 deletions

View File

@ -3,8 +3,12 @@ Changelog
.. currentmodule:: skyfield.positionlib
1.23 — Future
-------------
1.23 — 2020 July 9
------------------
* Added :doc:`kepler-orbits.rst` support
for generating the positions of comets and asteroids
from Minor Planet Center data files.
* Added :func:`~skyfield.positionlib.ICRF.is_behind_earth()` to
determine whether a celestial object is blocked from an Earth

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, 22)
VERSION = (1, 23)
__version__ = '.'.join(map(str, VERSION))