Skip to content

Commit

Permalink
Merge pull request #365 from ax3l/doc-changelog060
Browse files Browse the repository at this point in the history
Version: 0.6.0-alpha
  • Loading branch information
ax3l authored Sep 20, 2018
2 parents 57fca79 + db22fef commit ccadd27
Show file tree
Hide file tree
Showing 6 changed files with 19 additions and 17 deletions.
19 changes: 10 additions & 9 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,16 @@
Changelog
=========

0.5.1-alpha
0.6.0-alpha
-----------
**Date:** TBA
**Date:** 2018-09-20

[Title]
Particle Patches Improved, Constant Scalars and Python Containers Fixed

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

Changes to "0.5.0-alpha"
^^^^^^^^^^^^^^^^^^^^^^^^
Expand All @@ -30,11 +33,9 @@ Bug Fixes
"""""""""

- dataOrder: mesh attribute is a string #355
- constant scalar MeshRecords: reading corrected #358
- particle patches: stricter ``load( idx )`` range check #363
- Python:

- lifetime of ``Iteration.meshes/particles`` and ``Series.iterations`` members #354
- constant scalar Mesh Records: reading corrected #358
- particle patches: stricter ``load( idx )`` range check #363, then removed in #364
- Python: lifetime of ``Iteration.meshes/particles`` and ``Series.iterations`` members #354

Other
"""""
Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
#
cmake_minimum_required(VERSION 3.10.0)

project(openPMD VERSION 0.5.0) # LANGUAGES CXX
project(openPMD VERSION 0.6.0) # LANGUAGES CXX

# the openPMD "markup"/"schema" standard version
set(openPMD_STANDARD_VERSION 1.1.0)
Expand Down
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,8 @@ for( auto const& i : s.iterations ) {

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

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


```py
import openPMD
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.5.1'
version = u'0.6.0'
# The full version, including alpha/beta/rc tags.
release = u'0.5.1-dev'
release = u'0.6.0-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 @@ -38,7 +38,7 @@ The supported version of the `openPMD standard <https://github.com/openPMD/openP
======================= ===================================
openPMD-api version supported openPMD standard versions
======================= ===================================
``0.1.0-0.5.0`` (alpha) ``1.0.0-1.1.0``
``0.1.0-0.6.0`` (alpha) ``1.0.0-1.1.0``
``1.0.0+`` ``1.0.1-1.1.0`` (not released yet)
``2.0.0+`` ``2.0.0+`` (not released yet)
======================= ===================================
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 5
#define OPENPMDAPI_VERSION_PATCH 1
#define OPENPMDAPI_VERSION_LABEL "dev"
#define OPENPMDAPI_VERSION_MINOR 6
#define OPENPMDAPI_VERSION_PATCH 0
#define OPENPMDAPI_VERSION_LABEL "alpha"

// maximum supported version of the openPMD standard (read & write)
#define OPENPMD_STANDARD_MAJOR 1
Expand Down

0 comments on commit ccadd27

Please sign in to comment.