Version 2.13

This commit is contained in:
Brandon Rhodes 2020-02-22 11:40:52 -05:00
parent 3b3fc6eba7
commit f5150e4d67
2 changed files with 7 additions and 7 deletions

View File

@ -351,13 +351,13 @@ https://github.com/brandon-rhodes/python-jplephem/
Changelog
---------
**(Next version)**
**2020 February 22 Version 2.13**
* The ``ValueError`` thrown when a compute method is given a Julian date
outside the range it supports is now a subclass ``OutOfRangeError``
that reminds the caller of the acceptible range of dates of the SPK
segment, and carries an array attribute indicating which input dates
were at fault.
* The exception raised when a segment is given a Julian date outside the
segments date range is now an instance of the ``ValueError`` subclass
``OutOfRangeError`` that reminds the caller of the range of dates
supported by the SPK segment, and carries an array attribute
indicating which input dates were at fault.
**2019 December 13 Version 2.12**

View File

@ -8,7 +8,7 @@ import jplephem
description, long_description = jplephem.__doc__.split('\n', 1)
setup(name = 'jplephem',
version = '2.12',
version = '2.13',
description = description,
long_description = long_description,
license = 'MIT',