Skip to content

Commit

Permalink
Merge pull request #1946 from takluyver/rever-3.4
Browse files Browse the repository at this point in the history
Prepare to release 3.4.0
  • Loading branch information
takluyver committed Aug 23, 2021
2 parents b5ba109 + b4a5236 commit abe767b
Show file tree
Hide file tree
Showing 10 changed files with 24 additions and 75 deletions.
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@
# built documents.
#
# The full version, including alpha/beta/rc tags.
release = '3.3.0'
release = '3.4.0'
# The short X.Y version.
version = '.'.join(release.split('.')[:2])

Expand Down
20 changes: 20 additions & 0 deletions docs/whatsnew/3.4.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
What's new in h5py 3.4
======================

New features
------------

* The pre-built wheels now bundle HDF5 1.12.1 (:pr:`1945`).
* ``len()`` now works on ``dset.astype()``, ``.asstr()`` and ``.fields()``
wrappers (:pr:`1913`).

Bug fixes
---------

* Fix bug introduced in version 3.3 that did not allow the creation of files
using the flag "a" for certain drivers (e.g. mpiio, core and stdio)
(:pr:`1922`).
* Dataset indexing will now use the optimized fast path, which was accidentally
disabled in a previous version (:pr:`1944`).
* Fix an error building with Cython 3.0 alpha 8 (``cpdef`` inside functions)
(:pr:`1923`).
1 change: 1 addition & 0 deletions docs/whatsnew/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ These document the changes between minor (or major) versions of h5py.

.. toctree::

3.4
3.3
3.2
3.1
Expand Down
2 changes: 1 addition & 1 deletion h5py/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@

hdf5_built_version_tuple = _h5.HDF5_VERSION_COMPILED_AGAINST

version_tuple = _H5PY_VERSION_CLS(3, 3, 0, None, None, None)
version_tuple = _H5PY_VERSION_CLS(3, 4, 0, None, None, None)

version = "{0.major:d}.{0.minor:d}.{0.bugfix:d}".format(version_tuple)
if version_tuple.pre is not None:
Expand Down
4 changes: 0 additions & 4 deletions news/PR1922.rst

This file was deleted.

4 changes: 0 additions & 4 deletions news/fix-fast-reader.rst

This file was deleted.

29 changes: 0 additions & 29 deletions news/no-local-cpdef.rst

This file was deleted.

29 changes: 0 additions & 29 deletions news/wheels-hdf5-1.12.1.rst

This file was deleted.

6 changes: 0 additions & 6 deletions news/wrappers_len.rst

This file was deleted.

2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
import setup_build, setup_configure


VERSION = '3.3.0'
VERSION = '3.4.0'

# Minimum supported versions of Numpy & Cython depend on the Python version
NUMPY_MIN_VERSIONS = [
Expand Down

0 comments on commit abe767b

Please sign in to comment.