Skip to content

Commit adc840f

Browse files
author
Jeff Whitaker
committed
prepare for v1.6.1 release
1 parent 9ddebc9 commit adc840f

3 files changed

Lines changed: 7 additions & 2 deletions

File tree

Changelog

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
since version 1.6.0 release
1+
version 1.6.1 (tag v1.6.1rel)
22
==============================
33
* add Dataset methods has_<name>_filter (where <name>=zstd,blosc,bzip2,szip)
44
to check for availability of extra compression filters.

README.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,11 @@
1010
## News
1111
For details on the latest updates, see the [Changelog](https://github.com/Unidata/netcdf4-python/blob/master/Changelog).
1212

13+
09/18/2022: Version [1.6.1](https://pypi.python.org/pypi/netCDF4/1.6.1) released. GIL now
14+
released for all C lib calls, `set_alignment` and `get_alignment` module functions
15+
added to modify/retrieve HDF5 data alignment properties. Added `Dataset` methods to
16+
query availability of optional compression filters.
17+
1318
06/24/2022: Version [1.6.0](https://pypi.python.org/pypi/netCDF4/1.6.0) released. Support
1419
for quantization (bit-grooming and bit-rounding) functionality in netcdf-c 4.9.0 which can
1520
dramatically improve compression. Dataset.createVariable now accepts dimension instances (instead

src/netCDF4/_netCDF4.pyx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1230,7 +1230,7 @@ if sys.version_info[0:2] < (3, 7):
12301230
# Python 3.7+ guarantees order; older versions need OrderedDict
12311231
from collections import OrderedDict
12321232

1233-
__version__ = "1.6.0"
1233+
__version__ = "1.6.1"
12341234

12351235
# Initialize numpy
12361236
import posixpath

0 commit comments

Comments
 (0)