Skip to content

Commit 62977e0

Browse files
committed
Release: 0.13.3
Changelog and version bumps.
1 parent 9619e22 commit 62977e0

File tree

6 files changed

+33
-6
lines changed

6 files changed

+33
-6
lines changed

CHANGELOG.rst

+27
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,33 @@
33
Changelog
44
=========
55

6+
0.13.3
7+
------
8+
**Date:** 2021-04-09
9+
10+
Fix Various Read Issues
11+
12+
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.
13+
14+
Changes to "0.13.3"
15+
^^^^^^^^^^^^^^^^^^^
16+
17+
Bug Fixes
18+
"""""""""
19+
20+
- ``available_chunks()`` for constant components #942
21+
- Particle Patches: Do not emplace patch records if they don't exist in the file being read #945
22+
- ADIOS2: decay ``ReadWrite`` mode into ``adios2::Mode::Read`` if the file exists #943
23+
- HDF5: fix segfault with libSplash files #962
24+
- Python: fix ``load_chunk`` to temporary #913
25+
26+
Other
27+
"""""
28+
29+
- Sphinx: limit docutils to 0.16
30+
- CI: remove a failing ``find`` command
31+
32+
633
0.13.2
734
------
835
**Date:** 2021-02-02

CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
#
33
cmake_minimum_required(VERSION 3.15.0)
44

5-
project(openPMD VERSION 0.13.2) # LANGUAGES CXX
5+
project(openPMD VERSION 0.13.3) # LANGUAGES CXX
66

77
# the openPMD "markup"/"schema" standard version
88
set(openPMD_STANDARD_VERSION 1.1.0)

docs/source/conf.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -82,9 +82,9 @@
8282
# built documents.
8383
#
8484
# The short X.Y version.
85-
version = u'0.13.2'
85+
version = u'0.13.3'
8686
# The full version, including alpha/beta/rc tags.
87-
release = u'0.13.2'
87+
release = u'0.13.3'
8888

8989
# The language for content autogenerated by Sphinx. Refer to documentation
9090
# for a list of supported languages.

docs/source/index.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ openPMD-api version supported openPMD standard versions
4242
======================== ===================================
4343
``2.0.0+`` ``2.0.0+`` (not released yet)
4444
``1.0.0+`` ``1.0.1-1.1.0`` (not released yet)
45-
``0.13.0-0.13.2`` (beta) ``1.0.0-1.1.0``
45+
``0.13.0-0.13.3`` (beta) ``1.0.0-1.1.0``
4646
``0.1.0-0.12.0`` (alpha) ``1.0.0-1.1.0``
4747
======================== ===================================
4848

include/openPMD/version.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
*/
3030
#define OPENPMDAPI_VERSION_MAJOR 0
3131
#define OPENPMDAPI_VERSION_MINOR 13
32-
#define OPENPMDAPI_VERSION_PATCH 2
32+
#define OPENPMDAPI_VERSION_PATCH 3
3333
#define OPENPMDAPI_VERSION_LABEL ""
3434
/** @} */
3535

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ def build_extension(self, ext):
142142
setup(
143143
name='openPMD-api',
144144
# note PEP-440 syntax: x.y.zaN but x.y.z.devN
145-
version='0.13.2',
145+
version='0.13.3',
146146
author='Fabian Koller, Franz Poeschel, Axel Huebl',
147147
148148
maintainer='Axel Huebl',

0 commit comments

Comments
 (0)