Skip to content

Commit 23e8dfd

Browse files
authored
Release: 0.13.1 (#891)
Update version and write announcement text in changelog.
1 parent 8704380 commit 23e8dfd

File tree

5 files changed

+27
-10
lines changed

5 files changed

+27
-10
lines changed

CHANGELOG.rst

+23-6
Original file line numberDiff line numberDiff line change
@@ -5,24 +5,41 @@ Changelog
55

66
0.13.1
77
------
8-
**Date:** TBA
8+
**Date:** 2020-01-08
99

10-
[Title]
10+
Fix openPMD-ls & Iteration open/close
1111

12-
[Summary]
12+
This release fixes regressions in the series "ls" functionality and tools, related to ``Iteration::open()`` and ``::close()`` functionality.
13+
We also add support to read back complex numbers with JSON.
1314

1415
Changes to "0.13.0"
1516
^^^^^^^^^^^^^^^^^^^
1617

17-
Features
18-
""""""""
19-
2018
Bug Fixes
2119
"""""""""
2220

21+
- fix ``Iteration::close()`` and ``helper::listSeries``` / ``list_series`` / ``openPMD-ls`` #878 #880 #882 #883 #884
22+
- ``setup.py``: stay with ``Python_EXECUTABLE`` #875
23+
- ``FindPython.cmake``: Avoid overspecifying ``Development.Module`` with CMake 3.18+ #868
24+
- ``ChunkInfo``:
25+
26+
- fix includes #879
27+
- tests: adapt ``sourceID`` to handle nondeterministic subfile order #871
28+
- ADIOS1: fix ``Iteration::open()`` #864
29+
- JSON: support complex datatype reads #885
30+
- Docs: fix formatting of first read/write #892
31+
2332
Other
2433
"""""
2534

35+
- bounds check: more readable error message #890
36+
- ADIOS2: add a missing space in an error message #881
37+
- Docs: released pypi wheels include windows #869
38+
- CI:
39+
40+
- LGTM: fix C++ #873
41+
- Brew returns non-zero if already installed #877
42+
2643

2744
0.13.0
2845
------

docs/source/conf.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@
8484
# The short X.Y version.
8585
version = u'0.13.1'
8686
# The full version, including alpha/beta/rc tags.
87-
release = u'0.13.1-dev'
87+
release = u'0.13.1'
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`` (beta) ``1.0.0-1.1.0``
45+
``0.13.1`` (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
@@ -30,7 +30,7 @@
3030
#define OPENPMDAPI_VERSION_MAJOR 0
3131
#define OPENPMDAPI_VERSION_MINOR 13
3232
#define OPENPMDAPI_VERSION_PATCH 1
33-
#define OPENPMDAPI_VERSION_LABEL "dev"
33+
#define OPENPMDAPI_VERSION_LABEL ""
3434
/** @} */
3535

3636
/** maximum supported version of the openPMD standard (read & write, compile-time)

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.1.dev',
145+
version='0.13.1',
146146
author='Fabian Koller, Franz Poeschel, Axel Huebl',
147147
148148
maintainer='Axel Huebl',

0 commit comments

Comments
 (0)