From 3ee8b57dd8fa2d1559f5ee85ba08f5026db60be0 Mon Sep 17 00:00:00 2001 From: Axel Huebl Date: Thu, 13 May 2021 12:43:32 -0700 Subject: [PATCH] Release: 0.13.4 Changelog and version bumps --- CHANGELOG.rst | 19 ++++++++++++++++++- CMakeLists.txt | 2 +- docs/source/conf.py | 4 ++-- docs/source/index.rst | 2 +- include/openPMD/version.hpp | 2 +- setup.py | 2 +- 6 files changed, 24 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index dc5fe78ef1..56e549d259 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -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 @@ -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 diff --git a/CMakeLists.txt b/CMakeLists.txt index 617f04b0cc..20f47d0a80 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -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) diff --git a/docs/source/conf.py b/docs/source/conf.py index 8f9927d16d..5b0ecf8be9 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -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. diff --git a/docs/source/index.rst b/docs/source/index.rst index d1067f5144..fa89b436e9 100644 --- a/docs/source/index.rst +++ b/docs/source/index.rst @@ -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`` ======================== =================================== diff --git a/include/openPMD/version.hpp b/include/openPMD/version.hpp index 5d4df5a2a3..25e9bea11a 100644 --- a/include/openPMD/version.hpp +++ b/include/openPMD/version.hpp @@ -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 "" /** @} */ diff --git a/setup.py b/setup.py index 616cba7e87..94e396226d 100644 --- a/setup.py +++ b/setup.py @@ -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='f.koller@hzdr.de, f.poeschel@hzdr.de, axelhuebl@lbl.gov', maintainer='Axel Huebl',