Skip to content

Commit 6639c3f

Browse files
committed
Release: 0.13.2
Update version and write announcement text in changelog.
1 parent d1cd357 commit 6639c3f

File tree

6 files changed

+34
-7
lines changed

6 files changed

+34
-7
lines changed

CHANGELOG.rst

Lines changed: 28 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,36 @@
33
Changelog
44
=========
55

6+
0.13.2
7+
------
8+
**Date:** 2021-02-02
9+
10+
Fix Patch Read & Python store_chunk
11+
12+
This release fixes a regression with particle patches, related to ``Iteration::open()`` and ``::close()`` functionality.
13+
Also, issues with the Python ``store_chunk`` method are addressed.
14+
15+
Changes to "0.13.1"
16+
^^^^^^^^^^^^^^^^^^^
17+
18+
Bug Fixes
19+
"""""""""
20+
21+
- Read: check whether particle patches are dirty & handle gracefully #909
22+
- Python ``store_chunk``:
23+
24+
- add support for complex types #915
25+
- fix a use-after-free with temporary variables #912
26+
27+
Other
28+
"""""
29+
30+
- CMake: hint ``CMAKE_PREFIX_PATH`` as a warning for HDF5 #896
31+
32+
633
0.13.1
734
------
8-
**Date:** 2020-01-08
35+
**Date:** 2021-01-08
936

1037
Fix openPMD-ls & Iteration open/close
1138

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
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.1) # LANGUAGES CXX
5+
project(openPMD VERSION 0.13.2) # LANGUAGES CXX
66

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

docs/source/conf.py

Lines changed: 2 additions & 2 deletions
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.1'
85+
version = u'0.13.2'
8686
# The full version, including alpha/beta/rc tags.
87-
release = u'0.13.1'
87+
release = u'0.13.2'
8888

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

docs/source/index.rst

Lines changed: 1 addition & 1 deletion
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.1`` (beta) ``1.0.0-1.1.0``
45+
``0.13.0-0.13.2`` (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

Lines changed: 1 addition & 1 deletion
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 1
32+
#define OPENPMDAPI_VERSION_PATCH 2
3333
#define OPENPMDAPI_VERSION_LABEL ""
3434
/** @} */
3535

setup.py

Lines changed: 1 addition & 1 deletion
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.1',
145+
version='0.13.2',
146146
author='Fabian Koller, Franz Poeschel, Axel Huebl',
147147
148148
maintainer='Axel Huebl',

0 commit comments

Comments
 (0)