From 677d5a26567533e93e296b5a164310e2c8241f37 Mon Sep 17 00:00:00 2001 From: Brandon Rhodes Date: Wed, 11 Dec 2019 15:29:01 -0500 Subject: [PATCH] Add changelog entry for 2.10 --- jplephem/__init__.py | 5 +++++ setup.py | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/jplephem/__init__.py b/jplephem/__init__.py index 5af3fdb..a1f5583 100644 --- a/jplephem/__init__.py +++ b/jplephem/__init__.py @@ -343,6 +343,11 @@ https://github.com/brandon-rhodes/python-jplephem/ Changelog --------- +**2019 December 11 — Version 2.10** + +* Document and release support for ``.bcp`` binary PCK kernel files + through the new ``jplephem.pck`` module. + **2019 January 3 — Version 2.9** * Added the ``load_array()`` method to the segment class. diff --git a/setup.py b/setup.py index 87c6c60..e098969 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.9', + version = '2.10', description = description, long_description = long_description, license = 'MIT',