Skip to content

Commit

Permalink
Release: 0.13.1 (#891)
Browse files Browse the repository at this point in the history
Update version and write announcement text in changelog.
  • Loading branch information
ax3l authored Jan 8, 2021
1 parent 8704380 commit 23e8dfd
Show file tree
Hide file tree
Showing 5 changed files with 27 additions and 10 deletions.
29 changes: 23 additions & 6 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,24 +5,41 @@ Changelog

0.13.1
------
**Date:** TBA
**Date:** 2020-01-08

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

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

Changes to "0.13.0"
^^^^^^^^^^^^^^^^^^^

Features
""""""""

Bug Fixes
"""""""""

- fix ``Iteration::close()`` and ``helper::listSeries``` / ``list_series`` / ``openPMD-ls`` #878 #880 #882 #883 #884
- ``setup.py``: stay with ``Python_EXECUTABLE`` #875
- ``FindPython.cmake``: Avoid overspecifying ``Development.Module`` with CMake 3.18+ #868
- ``ChunkInfo``:

- fix includes #879
- tests: adapt ``sourceID`` to handle nondeterministic subfile order #871
- ADIOS1: fix ``Iteration::open()`` #864
- JSON: support complex datatype reads #885
- Docs: fix formatting of first read/write #892

Other
"""""

- bounds check: more readable error message #890
- ADIOS2: add a missing space in an error message #881
- Docs: released pypi wheels include windows #869
- CI:

- LGTM: fix C++ #873
- Brew returns non-zero if already installed #877


0.13.0
------
Expand Down
2 changes: 1 addition & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@
# The short X.Y version.
version = u'0.13.1'
# The full version, including alpha/beta/rc tags.
release = u'0.13.1-dev'
release = u'0.13.1'

# 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`` (beta) ``1.0.0-1.1.0``
``0.13.1`` (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 @@ -30,7 +30,7 @@
#define OPENPMDAPI_VERSION_MAJOR 0
#define OPENPMDAPI_VERSION_MINOR 13
#define OPENPMDAPI_VERSION_PATCH 1
#define OPENPMDAPI_VERSION_LABEL "dev"
#define OPENPMDAPI_VERSION_LABEL ""
/** @} */

/** maximum supported version of the openPMD standard (read & write, compile-time)
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.1.dev',
version='0.13.1',
author='Fabian Koller, Franz Poeschel, Axel Huebl',
author_email='[email protected], [email protected], [email protected]',
maintainer='Axel Huebl',
Expand Down

0 comments on commit 23e8dfd

Please sign in to comment.