Skip to content

Commit 647c85b

Browse files
committed
Release: 0.10.0-alpha
Update version and write announcement text in changelog.
1 parent 7439025 commit 647c85b

File tree

5 files changed

+17
-13
lines changed

5 files changed

+17
-13
lines changed

CHANGELOG.rst

+7-3
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,15 @@ Changelog
55

66
0.10.0-alpha
77
------------
8-
**Date:** TBA
8+
**Date:** 2019-11-14
99

10-
[Title]
10+
ADIOS2 Preview, Python & MPI Improved
1111

12-
[Summary]
12+
This release adds a first (preview) implementation of ADIOS2 (BP4).
13+
Python 3.8 support as well as improved pip builds on macOS and Windows have been added.
14+
ADIOS1 and HDF5 now support non-collective (independent) store and load operations with MPI.
15+
More HPC compilers, such as IBM XL, ICC and PGI have been tested.
16+
The manual has been improved with more details on APIs, examples, installation and backends.
1317

1418
Changes to "0.9.0-alpha"
1519
^^^^^^^^^^^^^^^^^^^^^^^^

docs/source/conf.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@
8080
# The short X.Y version.
8181
version = u'0.10.0'
8282
# The full version, including alpha/beta/rc tags.
83-
release = u'0.10.0-dev'
83+
release = u'0.10.0-alpha'
8484

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

docs/source/index.rst

+7-7
Original file line numberDiff line numberDiff line change
@@ -38,13 +38,13 @@ openPMD-api is a library using `semantic versioning <https://semver.org/>`_, sta
3838
The supported version of the `openPMD standard <https://github.com/openPMD/openPMD-standard>`_ are reflected as follows:
3939
``standardMAJOR.apiMAJOR.apiMINOR``.
4040

41-
======================= ===================================
42-
openPMD-api version supported openPMD standard versions
43-
======================= ===================================
44-
``2.0.0+`` ``2.0.0+`` (not released yet)
45-
``1.0.0+`` ``1.0.1-1.1.0`` (not released yet)
46-
``0.1.0-0.9.0`` (alpha) ``1.0.0-1.1.0``
47-
======================= ===================================
41+
======================== ===================================
42+
openPMD-api version supported openPMD standard versions
43+
======================== ===================================
44+
``2.0.0+`` ``2.0.0+`` (not released yet)
45+
``1.0.0+`` ``1.0.1-1.1.0`` (not released yet)
46+
``0.1.0-0.10.0`` (alpha) ``1.0.0-1.1.0``
47+
======================== ===================================
4848

4949
Installation
5050
------------

include/openPMD/version.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
#define OPENPMDAPI_VERSION_MAJOR 0
2525
#define OPENPMDAPI_VERSION_MINOR 10
2626
#define OPENPMDAPI_VERSION_PATCH 0
27-
#define OPENPMDAPI_VERSION_LABEL "dev"
27+
#define OPENPMDAPI_VERSION_LABEL "alpha"
2828

2929
// maximum supported version of the openPMD standard (read & write)
3030
#define OPENPMD_STANDARD_MAJOR 1

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ def build_extension(self, ext):
136136
setup(
137137
name='openPMD-api',
138138
# note PEP-440 syntax: x.y.zaN but x.y.z.devN
139-
version='0.10.0.dev',
139+
version='0.10.0a',
140140
author='Fabian Koller, Franz Poeschel, Axel Huebl',
141141
142142
maintainer='Axel Huebl',

0 commit comments

Comments
 (0)