Skip to content

Commit ccadd27

Browse files
authored
Merge pull request #365 from ax3l/doc-changelog060
Version: 0.6.0-alpha
2 parents 57fca79 + db22fef commit ccadd27

File tree

6 files changed

+19
-17
lines changed

6 files changed

+19
-17
lines changed

CHANGELOG.rst

+10-9
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,16 @@
33
Changelog
44
=========
55

6-
0.5.1-alpha
6+
0.6.0-alpha
77
-----------
8-
**Date:** TBA
8+
**Date:** 2018-09-20
99

10-
[Title]
10+
Particle Patches Improved, Constant Scalars and Python Containers Fixed
1111

12-
[Summary]
12+
Scalar records properly support const-ness.
13+
The Particle Patch load interface was changed, loading now all patches at once, and Python bindings are available.
14+
Numpy ``dtype`` is now a first-class citizen for Python ``Datatype`` control, being accepted and returned instead of enums.
15+
Python lifetime in garbage collection for containers such as ``meshes``, ``particles`` and ``iterations`` is now properly implemented.
1316

1417
Changes to "0.5.0-alpha"
1518
^^^^^^^^^^^^^^^^^^^^^^^^
@@ -30,11 +33,9 @@ Bug Fixes
3033
"""""""""
3134

3235
- dataOrder: mesh attribute is a string #355
33-
- constant scalar MeshRecords: reading corrected #358
34-
- particle patches: stricter ``load( idx )`` range check #363
35-
- Python:
36-
37-
- lifetime of ``Iteration.meshes/particles`` and ``Series.iterations`` members #354
36+
- constant scalar Mesh Records: reading corrected #358
37+
- particle patches: stricter ``load( idx )`` range check #363, then removed in #364
38+
- Python: lifetime of ``Iteration.meshes/particles`` and ``Series.iterations`` members #354
3839

3940
Other
4041
"""""

CMakeLists.txt

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

5-
project(openPMD VERSION 0.5.0) # LANGUAGES CXX
5+
project(openPMD VERSION 0.6.0) # LANGUAGES CXX
66

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

README.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,8 @@ for( auto const& i : s.iterations ) {
5858

5959
[![Python3][api-py3]](https://www.python.org/) ![Python3 API: Alpha][dev-alpha]
6060

61-
[api-py3]: https://img.shields.io/badge/language-Python3-yellow.svg "Python3 API"
61+
[api-py3]: https://img.shields.io/badge/language-Python3-yellowgreen.svg "Python3 API"
62+
6263

6364
```py
6465
import openPMD

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.5.1'
81+
version = u'0.6.0'
8282
# The full version, including alpha/beta/rc tags.
83-
release = u'0.5.1-dev'
83+
release = u'0.6.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
@@ -38,7 +38,7 @@ The supported version of the `openPMD standard <https://github.com/openPMD/openP
3838
======================= ===================================
3939
openPMD-api version supported openPMD standard versions
4040
======================= ===================================
41-
``0.1.0-0.5.0`` (alpha) ``1.0.0-1.1.0``
41+
``0.1.0-0.6.0`` (alpha) ``1.0.0-1.1.0``
4242
``1.0.0+`` ``1.0.1-1.1.0`` (not released yet)
4343
``2.0.0+`` ``2.0.0+`` (not released yet)
4444
======================= ===================================

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 5
26-
#define OPENPMDAPI_VERSION_PATCH 1
27-
#define OPENPMDAPI_VERSION_LABEL "dev"
25+
#define OPENPMDAPI_VERSION_MINOR 6
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

0 commit comments

Comments
 (0)