Skip to content

Commit 98d039b

Browse files
committed
Keep Alpha Status for Now
No breaking changes this release and some planned to come.
1 parent 92f845d commit 98d039b

File tree

6 files changed

+12
-14
lines changed

6 files changed

+12
-14
lines changed

CHANGELOG.rst

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

6-
0.8.0-beta
7-
----------
8-
**Date:** 2019-02-18
6+
0.8.0-alpha
7+
-----------
8+
**Date:** 2019-03-09
99

1010
Python mpi4py and Slice Support
1111

12-
This release opens the "beta" phase of openPMD-api.
1312
We implemented MPI support for the Python frontend via ``mpi4py`` and added ``[]``-slice access to ``Record_Component`` loads and stores.
1413
A bug requiring write permissions for read-only series was fixed and memory provided by users is now properly checked for being contiguous.
1514
Introductory chapters in the manual have been greatly extended.

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -25,10 +25,10 @@ Where supported, openPMD-api implements both serial and MPI parallel I/O capabil
2525

2626
### C++
2727

28-
[![C++11][api-cpp]](https://isocpp.org/) ![C++11 API: Beta][dev-beta]
28+
[![C++11][api-cpp]](https://isocpp.org/) ![C++11 API: Alpha][dev-alpha]
2929

3030
[api-cpp]: https://img.shields.io/badge/language-C%2B%2B11-yellowgreen.svg "C++11 API"
31-
[dev-beta]: https://img.shields.io/badge/phase-beta-yellowgreen.svg "Status: Beta"
31+
[dev-alpha]: https://img.shields.io/badge/phase-alpha-yellowgreen.svg "Status: Alpha"
3232

3333
```cpp
3434
#include <openPMD/openPMD.hpp>
@@ -57,7 +57,7 @@ for( auto const& i : s.iterations ) {
5757

5858
### Python
5959

60-
[![Python3][api-py3]](https://www.python.org/) ![Python3 API: Beta][dev-beta]
60+
[![Python3][api-py3]](https://www.python.org/) ![Python3 API: Alpha][dev-alpha]
6161

6262
[api-py3]: https://img.shields.io/badge/language-Python3-yellowgreen.svg "Python3 API"
6363

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.8.0'
8282
# The full version, including alpha/beta/rc tags.
83-
release = u'0.8.0-beta'
83+
release = u'0.8.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

+1-2
Original file line numberDiff line numberDiff line change
@@ -42,8 +42,7 @@ openPMD-api version supported openPMD standard versions
4242
======================= ===================================
4343
``1.0.0+`` ``1.0.1-1.1.0`` (not released yet)
4444
``2.0.0+`` ``2.0.0+`` (not released yet)
45-
``0.8.0`` (beta) ``1.0.0-1.1.0``
46-
``0.1.0-0.7.1`` (alpha) ``1.0.0-1.1.0``
45+
``0.1.0-0.8.0`` (alpha) ``1.0.0-1.1.0``
4746
======================= ===================================
4847

4948
************

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 8
2626
#define OPENPMDAPI_VERSION_PATCH 0
27-
#define OPENPMDAPI_VERSION_LABEL "beta"
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

+3-3
Original file line numberDiff line numberDiff line change
@@ -118,8 +118,8 @@ def build_extension(self, ext):
118118
# https://packaging.python.org/guides/distributing-packages-using-setuptools
119119
setup(
120120
name='openPMD-api',
121-
# note PEP-440 syntax: x.y.zbN but x.y.z.devN
122-
version='0.8.0b',
121+
# note PEP-440 syntax: x.y.zaN but x.y.z.devN
122+
version='0.8.0a',
123123
author='Fabian Koller, Franz Poeschel, Axel Huebl',
124124
125125
maintainer='Axel Huebl',
@@ -153,7 +153,7 @@ def build_extension(self, ext):
153153
# cmdclass={'test': PyTest},
154154
# platforms='any',
155155
classifiers=[
156-
'Development Status :: 4 - Beta',
156+
'Development Status :: 3 - Alpha',
157157
'Natural Language :: English',
158158
'Environment :: Console',
159159
'Intended Audience :: Science/Research',

0 commit comments

Comments
 (0)