Skip to content

Commit

Permalink
Merge pull request #623 from ax3l/doc-0101
Browse files Browse the repository at this point in the history
Release: 0.10.1-alpha
  • Loading branch information
ax3l committed Dec 7, 2019
2 parents 95ea4de + e2b6b09 commit 9900517
Show file tree
Hide file tree
Showing 6 changed files with 23 additions and 13 deletions.
21 changes: 15 additions & 6 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,15 @@
Changelog
=========

0.11.0-alpha
0.10.1-alpha
------------
**Date:** TBA
**Date:** 2019-12-06

[Title]
ADIOS2 Open Speed and NVCC Fixes

[Summary]
This releases improves the initial time spend when parsing data series with the ADIOS2 backend.
Compile problems when using the CUDA NVCC compiler in downstream projects have been fixed.
We adopted a Code of Conduct in openPMD.

Changes to "0.10.0-alpha"
^^^^^^^^^^^^^^^^^^^^^^^^
Expand All @@ -22,7 +24,10 @@ Features
Bug Fixes
"""""""""

- ADIOS2: fix C++17 build #614
- ADIOS2:

- fix C++17 build #614
- improve initial open speed of series #613
- nvcc:

- ignore export of ``enum class Operation`` #617
Expand All @@ -31,7 +36,11 @@ Bug Fixes
Other
"""""

- community: code of conduct added #619
- community:

- code of conduct added #619
- all contributors listed in README #621
- ``manylinux2010`` build automation updated for Python 3.8 #615


0.10.0-alpha
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ C++ & Python API for Scientific I/O with openPMD

[![Linux/OSX Build Status dev](https://img.shields.io/travis/openPMD/openPMD-api/dev.svg?label=dev)](https://travis-ci.org/openPMD/openPMD-api/branches)
[![Windows Build Status dev](https://ci.appveyor.com/api/projects/status/x95q4n620pqk0e0t/branch/dev?svg=true)](https://ci.appveyor.com/project/ax3l/openpmd-api/branch/dev)
[![Nightly Packages Status](https://dev.azure.com/axelhuebl/openPMD-api/_apis/build/status/openPMD.openPMD-api?branchName=azure_install&label=nightly%20packages)](https://dev.azure.com/axelhuebl/openPMD-api/_build/latest?definitionId=1&branchName=azure_install)
[![Coverity Scan Build Status](https://scan.coverity.com/projects/17602/badge.svg)](https://scan.coverity.com/projects/openpmd-openpmd-api)
[![Coverage Status](https://coveralls.io/repos/github/openPMD/openPMD-api/badge.svg)](https://coveralls.io/github/openPMD/openPMD-api)
[![CodeFactor](https://www.codefactor.io/repository/github/openpmd/openpmd-api/badge)](https://www.codefactor.io/repository/github/openpmd/openpmd-api)
Expand Down
4 changes: 2 additions & 2 deletions docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -78,9 +78,9 @@
# built documents.
#
# The short X.Y version.
version = u'0.11.0'
version = u'0.10.1'
# The full version, including alpha/beta/rc tags.
release = u'0.11.0-dev'
release = u'0.10.1-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.0`` (alpha) ``1.0.0-1.1.0``
``0.1.0-0.10.1`` (alpha) ``1.0.0-1.1.0``
======================== ===================================

.. toctree::
Expand Down
6 changes: 3 additions & 3 deletions include/openPMD/version.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -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 1
#define OPENPMDAPI_VERSION_LABEL "alpha"

// maximum supported version of the openPMD standard (read & write)
#define OPENPMD_STANDARD_MAJOR 1
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.1a',
author='Fabian Koller, Franz Poeschel, Axel Huebl',
author_email='[email protected], [email protected], [email protected]',
maintainer='Axel Huebl',
Expand Down

0 comments on commit 9900517

Please sign in to comment.