From e508f94ff304e1ce6a12821a8f27ad7229f25a5a Mon Sep 17 00:00:00 2001 From: Erin Sheldon Date: Tue, 7 Nov 2023 09:41:55 -0500 Subject: [PATCH] change log --- CHANGES.md | 4 ++++ fitsio/__init__.py | 2 +- setup.py | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/CHANGES.md b/CHANGES.md index 879a5944..f4285665 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -7,6 +7,10 @@ Changes errors in a FITS file. Currently this only raises when extensions are not properly marked with XTENSION but we can expand this over time +Bug Fixes + + - Bug not writing compression qlevel when it is set to None/0.0 + This was preventing lossless gzip compression version 1.2.0 -------------- diff --git a/fitsio/__init__.py b/fitsio/__init__.py index 6b34a503..e8acf9cc 100644 --- a/fitsio/__init__.py +++ b/fitsio/__init__.py @@ -5,7 +5,7 @@ usage. """ -__version__ = '1.2.0' +__version__ = '1.2.1' from . import fitslib diff --git a/setup.py b/setup.py index 4fc5fae3..63d85f39 100644 --- a/setup.py +++ b/setup.py @@ -318,7 +318,7 @@ def check_system_cfitsio_objects(self, obj_name): setup( name="fitsio", - version="1.2.0", + version="1.2.1", description=description, long_description=long_description, long_description_content_type='text/markdown; charset=UTF-8; variant=GFM',