From b2b6e72c8322144b3c7bf3b1011da9bbd8c316b2 Mon Sep 17 00:00:00 2001 From: Jeff Albrecht Date: Sat, 13 Jun 2020 20:39:45 -0500 Subject: [PATCH] release 0.1.5 (#55) * bump version * update changelog --- CHANGELOG.txt | 12 ++++++++++++ setup.py | 2 +- 2 files changed, 13 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.txt b/CHANGELOG.txt index f5f64be..11829c3 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -1,3 +1,15 @@ +0.1.5 (2020-6-13) +------------------ +- Add support for nodata values (#47) +- Improve filesystem exception handling (#48) +- Track header size (#49) +- Add support for boundless reads (#51) + - Add ``BOUNDLESS_READ`` configuration option which determines if internal tiles outside bounds of the IFD are read + - Add ``BOUNDLESS_READ_FILL_VALUE`` configuration option which determines the value used to fill boundless reads +- Remove asyncio callbacks (#52) +- Add support for packbits compressed images (#54) + + 0.1.4 (2020-6-07) ------------------ - Runs cpu bound code in background executor (#44) diff --git a/setup.py b/setup.py index 695641e..d4c4dc5 100644 --- a/setup.py +++ b/setup.py @@ -12,7 +12,7 @@ description="Asynchronous cogeotiff reader", long_description=desc, long_description_content_type="text/markdown", - version="0.1.4", + version="0.1.5", author=u"Jeff Albrecht", author_email="geospatialjeff@gmail.com", url="https://github.com/geospatial-jeff/aiocogeo",