Skip to content

Commit

Permalink
Release: 0.13.4
Browse files Browse the repository at this point in the history
Changelog and version bumps
  • Loading branch information
ax3l committed May 13, 2021
1 parent 4af321b commit 3ee8b57
Show file tree
Hide file tree
Showing 6 changed files with 24 additions and 7 deletions.
19 changes: 18 additions & 1 deletion CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,23 @@
Changelog
=========

0.13.4
------
**Date:** 2021-05-13

Fix AppleClang & DPC++ Build

Fix a missing include that fails builds with Apple's ``clang`` and Intel's ``dpcpp`` compilers.

Changes to "0.13.3"
^^^^^^^^^^^^^^^^^^^

Bug Fixes
"""""""""

- ``Variant.hpp``: ``size_t`` include #972


0.13.3
------
**Date:** 2021-04-09
Expand All @@ -11,7 +28,7 @@ Fix Various Read Issues

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.

Changes to "0.13.3"
Changes to "0.13.2"
^^^^^^^^^^^^^^^^^^^

Bug Fixes
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.3) # LANGUAGES CXX
project(openPMD VERSION 0.13.4) # 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.3'
version = u'0.13.4'
# The full version, including alpha/beta/rc tags.
release = u'0.13.3'
release = u'0.13.4'

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

0 comments on commit 3ee8b57

Please sign in to comment.