diff --git a/CHANGELOG.md b/CHANGELOG.md index 4258d9c..7fff61d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,16 +1,24 @@ # Changelog for Skyfield Data -## master (unreleased) +## 0.1.0 (2019-10-04) + +### Library Runtime Enhancements + +* Dropped compatibility with Python 3.3 and 3.4, as skyfield did. +* Generate a catalog of the expiration dates for files. +* Detect when a file has expired and raise a ``UserWarning``. + +### Downloader Enhancements * Added a ``--check-only`` argument to ``download.py`` to display the expiration dates of the files currently on disk. * Enable computation of the expiration date of the BSP file(s) on disk (requires to install the local repository using the [dev] option / See README for more information). -* Dropped compatibility with Python 3.3 and 3.4, as skyfield did. +* Warn user when there's a download error. Expiration date file won't be modified if at least one of the downloads has failed. + +### Other Improvements + * Added basic tests for the ``get_skyfield_data_path`` function using `tox`. * Added automated tests through Travis CI. -* Generate a catalog of the expiration dates for files, -* Detect when a file has expired and raise a ``UserWarning`` * Add Travis CI badge on README. -* Warn user when there's a download error. Expiration date file won't be modified if at least one of the downloads has failed. * Added a test to check if the current files are about to expire (45 days from now). Travis CI would run a monthly job and eventually report when it has failed, so actions can be done to refresh the files and "unbreak" the library. ## 0.0.2 (2019-08-23) diff --git a/setup.cfg b/setup.cfg index b21d3c5..25c21f4 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = skyfield-data -version = 0.0.3.dev0 +version = 0.1.0 author = Bruno Bord author-email = bruno@jehaisleprintemps.net home-page = https://github.com/brunobord/skyfield-data