Skip to content

Commit 7f499d4

Browse files
committed
Release: 0.14.1
Update version and write announcement text in changelog.
1 parent f2572de commit 7f499d4

File tree

8 files changed

+27
-8
lines changed

8 files changed

+27
-8
lines changed

CHANGELOG.rst

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,25 @@
33
Changelog
44
=========
55

6+
0.14.1
7+
------
8+
**Date:** 2021-08-04
9+
10+
ADIOS2 Close Regressions & ADIOS1 Build
11+
12+
Fix a regression with file handling for ADIOS2 when using explicit close logic, especially with interleaved writes to multiple iterations.
13+
Also fix an issue with ADIOS1 builds that potentially picked up headers from older, installed openPMD-api versions.
14+
15+
Changes to "0.14.0"
16+
^^^^^^^^^^^^^^^^^^^
17+
18+
Bug Fixes
19+
"""""""""
20+
21+
- ADIOS2: interleaved writes of iterations with close #1073
22+
- CMake: ADIOS1 includes w/o ``SYSTEM`` #1076
23+
24+
625
0.14.0
726
------
827
**Date:** 2021-07-29

CITATION.cff

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ contact:
2525
orcid: https://orcid.org/0000-0003-1943-7141
2626
2727
title: "openPMD-api: C++ & Python API for Scientific I/O with openPMD"
28-
version: 0.14.0
28+
version: 0.14.1
2929
repository-code: https://github.com/openPMD/openPMD-api
3030
doi: 10.14278/rodare.27
3131
license: LGPL-3.0-or-later

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
#
33
cmake_minimum_required(VERSION 3.15.0)
44

5-
project(openPMD VERSION 0.14.0) # LANGUAGES CXX
5+
project(openPMD VERSION 0.14.1) # LANGUAGES CXX
66

77
# the openPMD "markup"/"schema" standard version
88
set(openPMD_STANDARD_VERSION 1.1.0)

docs/source/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -83,9 +83,9 @@
8383
# built documents.
8484
#
8585
# The short X.Y version.
86-
version = u'0.14.0'
86+
version = u'0.14.1'
8787
# The full version, including alpha/beta/rc tags.
88-
release = u'0.14.0'
88+
release = u'0.14.1'
8989

9090
# The language for content autogenerated by Sphinx. Refer to documentation
9191
# for a list of supported languages.

docs/source/index.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ openPMD-api version supported openPMD standard versions
4242
======================== ===================================
4343
``2.0.0+`` ``2.0.0+`` (not released yet)
4444
``1.0.0+`` ``1.0.1-1.1.0`` (not released yet)
45-
``0.13.1-0.14.0`` (beta) ``1.0.0-1.1.0``
45+
``0.13.1-0.14.1`` (beta) ``1.0.0-1.1.0``
4646
``0.1.0-0.12.0`` (alpha) ``1.0.0-1.1.0``
4747
======================== ===================================
4848

include/openPMD/version.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
*/
3030
#define OPENPMDAPI_VERSION_MAJOR 0
3131
#define OPENPMDAPI_VERSION_MINOR 14
32-
#define OPENPMDAPI_VERSION_PATCH 0
32+
#define OPENPMDAPI_VERSION_PATCH 1
3333
#define OPENPMDAPI_VERSION_LABEL ""
3434
/** @} */
3535

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ def build_extension(self, ext):
156156
setup(
157157
name='openPMD-api',
158158
# note PEP-440 syntax: x.y.zaN but x.y.z.devN
159-
version='0.14.0',
159+
version='0.14.1',
160160
author='Axel Huebl, Franz Poeschel, Fabian Koller, Junmin Gu',
161161
162162
maintainer='Axel Huebl',

test/SerialIOTest.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ TEST_CASE( "adios2_char_portability", "[serial][adios2]" )
8989
writeAttribute( "/openPMD", std::string( "1.1.0" ) );
9090
writeAttribute( "/openPMDextension", uint32_t( 0 ) );
9191
writeAttribute( "/software", std::string( "openPMD-api" ) );
92-
writeAttribute( "/softwareVersion", std::string( "0.14.0-dev" ) );
92+
writeAttribute( "/softwareVersion", std::string( "0.14.1-dev" ) );
9393

9494
IO.DefineAttribute< uint64_t >(
9595
"__openPMD_internal/openPMD2_adios2_schema", 20210209 );

0 commit comments

Comments
 (0)