Skip to content

Commit

Permalink
Release: 0.14.1
Browse files Browse the repository at this point in the history
Update version and write announcement text in changelog.
  • Loading branch information
ax3l committed Aug 4, 2021
1 parent f2572de commit 7f499d4
Show file tree
Hide file tree
Showing 8 changed files with 27 additions and 8 deletions.
19 changes: 19 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,25 @@
Changelog
=========

0.14.1
------
**Date:** 2021-08-04

ADIOS2 Close Regressions & ADIOS1 Build

Fix a regression with file handling for ADIOS2 when using explicit close logic, especially with interleaved writes to multiple iterations.
Also fix an issue with ADIOS1 builds that potentially picked up headers from older, installed openPMD-api versions.

Changes to "0.14.0"
^^^^^^^^^^^^^^^^^^^

Bug Fixes
"""""""""

- ADIOS2: interleaved writes of iterations with close #1073
- CMake: ADIOS1 includes w/o ``SYSTEM`` #1076


0.14.0
------
**Date:** 2021-07-29
Expand Down
2 changes: 1 addition & 1 deletion CITATION.cff
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ contact:
orcid: https://orcid.org/0000-0003-1943-7141
email: [email protected]
title: "openPMD-api: C++ & Python API for Scientific I/O with openPMD"
version: 0.14.0
version: 0.14.1
repository-code: https://github.com/openPMD/openPMD-api
doi: 10.14278/rodare.27
license: LGPL-3.0-or-later
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.14.0) # LANGUAGES CXX
project(openPMD VERSION 0.14.1) # 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 @@ -83,9 +83,9 @@
# built documents.
#
# The short X.Y version.
version = u'0.14.0'
version = u'0.14.1'
# The full version, including alpha/beta/rc tags.
release = u'0.14.0'
release = u'0.14.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.1-0.14.0`` (beta) ``1.0.0-1.1.0``
``0.13.1-0.14.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 @@ -29,7 +29,7 @@
*/
#define OPENPMDAPI_VERSION_MAJOR 0
#define OPENPMDAPI_VERSION_MINOR 14
#define OPENPMDAPI_VERSION_PATCH 0
#define OPENPMDAPI_VERSION_PATCH 1
#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 @@ -156,7 +156,7 @@ def build_extension(self, ext):
setup(
name='openPMD-api',
# note PEP-440 syntax: x.y.zaN but x.y.z.devN
version='0.14.0',
version='0.14.1',
author='Axel Huebl, Franz Poeschel, Fabian Koller, Junmin Gu',
author_email='[email protected], [email protected]',
maintainer='Axel Huebl',
Expand Down
2 changes: 1 addition & 1 deletion test/SerialIOTest.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ TEST_CASE( "adios2_char_portability", "[serial][adios2]" )
writeAttribute( "/openPMD", std::string( "1.1.0" ) );
writeAttribute( "/openPMDextension", uint32_t( 0 ) );
writeAttribute( "/software", std::string( "openPMD-api" ) );
writeAttribute( "/softwareVersion", std::string( "0.14.0-dev" ) );
writeAttribute( "/softwareVersion", std::string( "0.14.1-dev" ) );

IO.DefineAttribute< uint64_t >(
"__openPMD_internal/openPMD2_adios2_schema", 20210209 );
Expand Down

0 comments on commit 7f499d4

Please sign in to comment.