Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release: 0.11.0-alpha #692

Merged
merged 1 commit into from
Mar 6, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 5 additions & 4 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,12 @@ Changelog

0.11.0-alpha
------------
**Date:** TBA
**Date:** 2020-03-05

[Title]
Robust Independent I/O

[Summary]
This release improves MPI-parallel I/O with HDF5 and ADIOS.
ADIOS2 is now the default backend for handing ``.bp`` files.

Changes to "0.10.3-alpha"
^^^^^^^^^^^^^^^^^^^^^^^^^
Expand Down Expand Up @@ -59,7 +60,7 @@ Other
- migrate static checks for python code to GitHub actions #660
- add MPICH tests to CI #670
- ``Attribute`` constructor: move argument into place #663
- Spack: ADIOS1 backend now enabled by default #664
- Spack: ADIOS2 backend now enabled by default #664 #676
- add independent HDF5 write test to CI #669
- add test of multiple active ``Series`` #686

Expand Down
2 changes: 1 addition & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@
# The short X.Y version.
version = u'0.11.0'
# The full version, including alpha/beta/rc tags.
release = u'0.11.0-dev'
release = u'0.11.0-alpha'

# 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 @@ -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.3`` (alpha) ``1.0.0-1.1.0``
``0.1.0-0.11.0`` (alpha) ``1.0.0-1.1.0``
======================== ===================================

.. toctree::
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 11
#define OPENPMDAPI_VERSION_PATCH 0
#define OPENPMDAPI_VERSION_LABEL "dev"
#define OPENPMDAPI_VERSION_LABEL "alpha"
/** @} */

/** maximum supported version of the openPMD standard (read & write, compile-time)
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,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.11.0a',
author='Fabian Koller, Franz Poeschel, Axel Huebl',
author_email='f.koller@hzdr.de, f.poeschel@hzdr.de, axelhuebl@lbl.gov',
maintainer='Axel Huebl',
Expand Down