Skip to content

Commit 9900517

Browse files
authored
Merge pull request #623 from ax3l/doc-0101
Release: 0.10.1-alpha
2 parents 95ea4de + e2b6b09 commit 9900517

File tree

6 files changed

+23
-13
lines changed

6 files changed

+23
-13
lines changed

CHANGELOG.rst

+15-6
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,15 @@
33
Changelog
44
=========
55

6-
0.11.0-alpha
6+
0.10.1-alpha
77
------------
8-
**Date:** TBA
8+
**Date:** 2019-12-06
99

10-
[Title]
10+
ADIOS2 Open Speed and NVCC Fixes
1111

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

1416
Changes to "0.10.0-alpha"
1517
^^^^^^^^^^^^^^^^^^^^^^^^
@@ -22,7 +24,10 @@ Features
2224
Bug Fixes
2325
"""""""""
2426

25-
- ADIOS2: fix C++17 build #614
27+
- ADIOS2:
28+
29+
- fix C++17 build #614
30+
- improve initial open speed of series #613
2631
- nvcc:
2732

2833
- ignore export of ``enum class Operation`` #617
@@ -31,7 +36,11 @@ Bug Fixes
3136
Other
3237
"""""
3338

34-
- community: code of conduct added #619
39+
- community:
40+
41+
- code of conduct added #619
42+
- all contributors listed in README #621
43+
- ``manylinux2010`` build automation updated for Python 3.8 #615
3544

3645

3746
0.10.0-alpha

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ C++ & Python API for Scientific I/O with openPMD
1212

1313
[![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)
1414
[![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)
15+
[![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)
1516
[![Coverity Scan Build Status](https://scan.coverity.com/projects/17602/badge.svg)](https://scan.coverity.com/projects/openpmd-openpmd-api)
1617
[![Coverage Status](https://coveralls.io/repos/github/openPMD/openPMD-api/badge.svg)](https://coveralls.io/github/openPMD/openPMD-api)
1718
[![CodeFactor](https://www.codefactor.io/repository/github/openpmd/openpmd-api/badge)](https://www.codefactor.io/repository/github/openpmd/openpmd-api)

docs/source/conf.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -78,9 +78,9 @@
7878
# built documents.
7979
#
8080
# The short X.Y version.
81-
version = u'0.11.0'
81+
version = u'0.10.1'
8282
# The full version, including alpha/beta/rc tags.
83-
release = u'0.11.0-dev'
83+
release = u'0.10.1-alpha'
8484

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

docs/source/index.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ openPMD-api version supported openPMD standard versions
4343
======================== ===================================
4444
``2.0.0+`` ``2.0.0+`` (not released yet)
4545
``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``
46+
``0.1.0-0.10.1`` (alpha) ``1.0.0-1.1.0``
4747
======================== ===================================
4848

4949
.. toctree::

include/openPMD/version.hpp

+3-3
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,9 @@
2222

2323
// version of the openPMD-api library
2424
#define OPENPMDAPI_VERSION_MAJOR 0
25-
#define OPENPMDAPI_VERSION_MINOR 11
26-
#define OPENPMDAPI_VERSION_PATCH 0
27-
#define OPENPMDAPI_VERSION_LABEL "dev"
25+
#define OPENPMDAPI_VERSION_MINOR 10
26+
#define OPENPMDAPI_VERSION_PATCH 1
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.11.0.dev',
139+
version='0.10.1a',
140140
author='Fabian Koller, Franz Poeschel, Axel Huebl',
141141
142142
maintainer='Axel Huebl',

0 commit comments

Comments
 (0)