From c4e29d6d010a434a357cdd4b2bbf1e8c1f2fdd43 Mon Sep 17 00:00:00 2001 From: Axel Huebl Date: Sat, 21 Dec 2019 11:56:50 -0800 Subject: [PATCH] Release: 0.10.3-alpha Update version and write announcement text in changelog. --- CHANGELOG.rst | 13 ++++++------- CMakeLists.txt | 2 +- docs/source/conf.py | 4 ++-- docs/source/index.rst | 2 +- include/openPMD/version.hpp | 6 +++--- setup.py | 2 +- 6 files changed, 14 insertions(+), 15 deletions(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index f1a1a9601e..a5ed44aab1 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -3,29 +3,28 @@ Changelog ========= -0.11.0-alpha +0.10.3-alpha ------------ -**Date:** TBA +**Date:** 2019-12-22 -[Title] +Improved HDF5 Handling -[Summary] +More robust HDF5 file handling and fixes of local includes for more isolated builds. Changes to "0.10.2-alpha" ^^^^^^^^^^^^^^^^^^^^^^^^ -Features -"""""""" - Bug Fixes """"""""" - Source files: fix includes #640 +- HDF5: gracefully handle already open files #643 Other """"" - Better handling of legacy libSplash HDF5 files #641 +- new contributors #644 0.10.2-alpha diff --git a/CMakeLists.txt b/CMakeLists.txt index 25183ffc81..7a0265f704 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -2,7 +2,7 @@ # cmake_minimum_required(VERSION 3.11.0) -project(openPMD VERSION 0.11.0) # LANGUAGES CXX +project(openPMD VERSION 0.10.3) # 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 40a9c86fc5..35aa5de974 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -78,9 +78,9 @@ # built documents. # # The short X.Y version. -version = u'0.11.0' +version = u'0.10.3' # The full version, including alpha/beta/rc tags. -release = u'0.11.0-dev' +release = u'0.10.3-alpha' # 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 6c009a4865..078e084b68 100644 --- a/docs/source/index.rst +++ b/docs/source/index.rst @@ -43,7 +43,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.1.0-0.10.2`` (alpha) ``1.0.0-1.1.0`` +``0.1.0-0.10.3`` (alpha) ``1.0.0-1.1.0`` ======================== =================================== .. toctree:: diff --git a/include/openPMD/version.hpp b/include/openPMD/version.hpp index 515f83f515..d3f392a686 100644 --- a/include/openPMD/version.hpp +++ b/include/openPMD/version.hpp @@ -22,9 +22,9 @@ // version of the openPMD-api library #define OPENPMDAPI_VERSION_MAJOR 0 -#define OPENPMDAPI_VERSION_MINOR 11 -#define OPENPMDAPI_VERSION_PATCH 0 -#define OPENPMDAPI_VERSION_LABEL "dev" +#define OPENPMDAPI_VERSION_MINOR 10 +#define OPENPMDAPI_VERSION_PATCH 3 +#define OPENPMDAPI_VERSION_LABEL "alpha" // maximum supported version of the openPMD standard (read & write) #define OPENPMD_STANDARD_MAJOR 1 diff --git a/setup.py b/setup.py index 91304e615e..01d189ae7d 100644 --- a/setup.py +++ b/setup.py @@ -136,7 +136,7 @@ def build_extension(self, ext): setup( name='openPMD-api', # note PEP-440 syntax: x.y.zaN but x.y.z.devN - version='0.11.0.dev', + version='0.10.3a', author='Fabian Koller, Franz Poeschel, Axel Huebl', author_email='f.koller@hzdr.de, f.poeschel@hzdr.de, axelhuebl@lbl.gov', maintainer='Axel Huebl',