Skip to content

Commit

Permalink
Release: 0.13.2
Browse files Browse the repository at this point in the history
Update version and write announcement text in changelog.
  • Loading branch information
ax3l committed Feb 2, 2021
1 parent d1cd357 commit 6639c3f
Show file tree
Hide file tree
Showing 6 changed files with 34 additions and 7 deletions.
29 changes: 28 additions & 1 deletion CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,36 @@
Changelog
=========

0.13.2
------
**Date:** 2021-02-02

Fix Patch Read & Python store_chunk

This release fixes a regression with particle patches, related to ``Iteration::open()`` and ``::close()`` functionality.
Also, issues with the Python ``store_chunk`` method are addressed.

Changes to "0.13.1"
^^^^^^^^^^^^^^^^^^^

Bug Fixes
"""""""""

- Read: check whether particle patches are dirty & handle gracefully #909
- Python ``store_chunk``:

- add support for complex types #915
- fix a use-after-free with temporary variables #912

Other
"""""

- CMake: hint ``CMAKE_PREFIX_PATH`` as a warning for HDF5 #896


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

Fix openPMD-ls & Iteration open/close

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.1) # LANGUAGES CXX
project(openPMD VERSION 0.13.2) # 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.1'
version = u'0.13.2'
# The full version, including alpha/beta/rc tags.
release = u'0.13.1'
release = u'0.13.2'

# 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.1`` (beta) ``1.0.0-1.1.0``
``0.13.0-0.13.2`` (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 1
#define OPENPMDAPI_VERSION_PATCH 2
#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.1',
version='0.13.2',
author='Fabian Koller, Franz Poeschel, Axel Huebl',
author_email='[email protected], [email protected], [email protected]',
maintainer='Axel Huebl',
Expand Down

0 comments on commit 6639c3f

Please sign in to comment.