Skip to content

Commit 31c2787

Browse files
authored
Merge pull request #481 from ax3l/doc-changelog080
Version: 0.8.0-alpha
2 parents b9b0d63 + 98d039b commit 31c2787

File tree

6 files changed

+15
-13
lines changed

6 files changed

+15
-13
lines changed

CHANGELOG.rst

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

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

10-
[Title]
10+
Python mpi4py and Slice Support
1111

12-
[Summary]
12+
We implemented MPI support for the Python frontend via ``mpi4py`` and added ``[]``-slice access to ``Record_Component`` loads and stores.
13+
A bug requiring write permissions for read-only series was fixed and memory provided by users is now properly checked for being contiguous.
14+
Introductory chapters in the manual have been greatly extended.
1315

1416
Changes to "0.7.1-alpha"
1517
^^^^^^^^^^^^^^^^^^^^^^^^

CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
#
33
cmake_minimum_required(VERSION 3.11.0)
44

5-
project(openPMD VERSION 0.7.1) # LANGUAGES CXX
5+
project(openPMD VERSION 0.8.0) # LANGUAGES CXX
66

77
# the openPMD "markup"/"schema" standard version
88
set(openPMD_STANDARD_VERSION 1.1.0)

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.7.1'
81+
version = u'0.8.0'
8282
# The full version, including alpha/beta/rc tags.
83-
release = u'0.7.1-dev'
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-1
Original file line numberDiff line numberDiff line change
@@ -40,9 +40,9 @@ The supported version of the `openPMD standard <https://github.com/openPMD/openP
4040
======================= ===================================
4141
openPMD-api version supported openPMD standard versions
4242
======================= ===================================
43-
``0.1.0-0.7.1`` (alpha) ``1.0.0-1.1.0``
4443
``1.0.0+`` ``1.0.1-1.1.0`` (not released yet)
4544
``2.0.0+`` ``2.0.0+`` (not released yet)
45+
``0.1.0-0.8.0`` (alpha) ``1.0.0-1.1.0``
4646
======================= ===================================
4747

4848
************

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 7
26-
#define OPENPMDAPI_VERSION_PATCH 1
27-
#define OPENPMDAPI_VERSION_LABEL "dev"
25+
#define OPENPMDAPI_VERSION_MINOR 8
26+
#define OPENPMDAPI_VERSION_PATCH 0
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
@@ -119,7 +119,7 @@ def build_extension(self, ext):
119119
setup(
120120
name='openPMD-api',
121121
# note PEP-440 syntax: x.y.zaN but x.y.z.devN
122-
version='0.7.1.dev',
122+
version='0.8.0a',
123123
author='Fabian Koller, Franz Poeschel, Axel Huebl',
124124
125125
maintainer='Axel Huebl',

0 commit comments

Comments
 (0)