Skip to content

Commit

Permalink
Merge pull request #272 from ax3l/topic-release030
Browse files Browse the repository at this point in the history
Version: 0.3.0-alpha
  • Loading branch information
ax3l committed Jun 18, 2018
2 parents e50c6f2 + 72a00de commit af3d21e
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 14 deletions.
13 changes: 6 additions & 7 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,15 @@
Changelog
=========

0.2.1-alpha
0.3.0-alpha
-----------
**Date:** TBD
**Date:** 2018-06-18

[Title]
Python Attributes, Better FS Handling and Runtime Checks

Introduces new independent mechanism for verifying internal conditions.
Fixes several filesystem and CMake bugs.
Exposes more interfaces to Python.
This release exposes openPMD attributes to Python.
A new independent mechanism for verifying internal conditions is now in place.
Filesystem support is now more robust on varying directory separators.

Changes to "0.2.0-alpha"
^^^^^^^^^^^^^^^^^^^^^^^^
Expand All @@ -24,7 +24,6 @@ Features
- serial Singularity container #236
- Python:

- unit tests #249
- expose attributes #256 #266
- use lists for offsets & extents #266
- C++:
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.2.0) # LANGUAGES CXX
project(openPMD VERSION 0.3.0) # LANGUAGES CXX

# the openPMD "markup"/"schema" standard version
set(openPMD_STANDARD_VERSION 1.1.0)
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.2.1'
version = u'0.3.0'
# The full version, including alpha/beta/rc tags.
release = u'0.2.1-dev'
release = u'0.3.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.2.0`` (alpha) ``1.0.0-1.1.0``
``0.1.0-0.3.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 2
#define OPENPMDAPI_VERSION_PATCH 1
#define OPENPMDAPI_VERSION_LABEL "dev"
#define OPENPMDAPI_VERSION_MINOR 3
#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 af3d21e

Please sign in to comment.