From f5150e4d6759efb2cfcd63eef3164bb2fb705d3f Mon Sep 17 00:00:00 2001 From: Brandon Rhodes Date: Sat, 22 Feb 2020 11:40:52 -0500 Subject: [PATCH] Version 2.13 --- jplephem/__init__.py | 12 ++++++------ setup.py | 2 +- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/jplephem/__init__.py b/jplephem/__init__.py index fd83ea2..318d7a5 100644 --- a/jplephem/__init__.py +++ b/jplephem/__init__.py @@ -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 + segment’s 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** diff --git a/setup.py b/setup.py index f4b57a9..ec648a5 100644 --- a/setup.py +++ b/setup.py @@ -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',