Skip to content

Commit

Permalink
Release: 0.13.3
Browse files Browse the repository at this point in the history
Changelog and version bumps.
  • Loading branch information
ax3l committed Apr 9, 2021
1 parent 9619e22 commit 62977e0
Show file tree
Hide file tree
Showing 6 changed files with 33 additions and 6 deletions.
27 changes: 27 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,33 @@
Changelog
=========

0.13.3
------
**Date:** 2021-04-09

Fix Various Read Issues

This release fixes various bugs related to reading: a chunk fallback for constant components, skip missing patch records, a backend bug in each ADIOS2 & HDF5, and we made the Python ``load_chunk`` method more robust.

Changes to "0.13.3"
^^^^^^^^^^^^^^^^^^^

Bug Fixes
"""""""""

- ``available_chunks()`` for constant components #942
- Particle Patches: Do not emplace patch records if they don't exist in the file being read #945
- ADIOS2: decay ``ReadWrite`` mode into ``adios2::Mode::Read`` if the file exists #943
- HDF5: fix segfault with libSplash files #962
- Python: fix ``load_chunk`` to temporary #913

Other
"""""

- Sphinx: limit docutils to 0.16
- CI: remove a failing ``find`` command


0.13.2
------
**Date:** 2021-02-02
Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
#
cmake_minimum_required(VERSION 3.15.0)

project(openPMD VERSION 0.13.2) # LANGUAGES CXX
project(openPMD VERSION 0.13.3) # LANGUAGES CXX

# the openPMD "markup"/"schema" standard version
set(openPMD_STANDARD_VERSION 1.1.0)
Expand Down
4 changes: 2 additions & 2 deletions docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -82,9 +82,9 @@
# built documents.
#
# The short X.Y version.
version = u'0.13.2'
version = u'0.13.3'
# The full version, including alpha/beta/rc tags.
release = u'0.13.2'
release = u'0.13.3'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
2 changes: 1 addition & 1 deletion docs/source/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ openPMD-api version supported openPMD standard versions
======================== ===================================
``2.0.0+`` ``2.0.0+`` (not released yet)
``1.0.0+`` ``1.0.1-1.1.0`` (not released yet)
``0.13.0-0.13.2`` (beta) ``1.0.0-1.1.0``
``0.13.0-0.13.3`` (beta) ``1.0.0-1.1.0``
``0.1.0-0.12.0`` (alpha) ``1.0.0-1.1.0``
======================== ===================================

Expand Down
2 changes: 1 addition & 1 deletion include/openPMD/version.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
*/
#define OPENPMDAPI_VERSION_MAJOR 0
#define OPENPMDAPI_VERSION_MINOR 13
#define OPENPMDAPI_VERSION_PATCH 2
#define OPENPMDAPI_VERSION_PATCH 3
#define OPENPMDAPI_VERSION_LABEL ""
/** @} */

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ def build_extension(self, ext):
setup(
name='openPMD-api',
# note PEP-440 syntax: x.y.zaN but x.y.z.devN
version='0.13.2',
version='0.13.3',
author='Fabian Koller, Franz Poeschel, Axel Huebl',
author_email='[email protected], [email protected], [email protected]',
maintainer='Axel Huebl',
Expand Down

0 comments on commit 62977e0

Please sign in to comment.