File tree 5 files changed +12
-11
lines changed
5 files changed +12
-11
lines changed Original file line number Diff line number Diff line change 3
3
Changelog
4
4
=========
5
5
6
- 0.1.2 -alpha
6
+ 0.2.0 -alpha
7
7
-----------
8
- **Date: ** TBD
8
+ **Date: ** 2018-06-11
9
9
10
- [Title]
10
+ Initial Numpy Bindings
11
11
12
- [Short Summary]
12
+ Adds first bindings for record component reading and writing.
13
+ Fixes some minor CMake issues.
13
14
14
15
Changes to "0.1.1-alpha"
15
16
^^^^^^^^^^^^^^^^^^^^^^^^
Original file line number Diff line number Diff line change 2
2
#
3
3
cmake_minimum_required (VERSION 3.10.0)
4
4
5
- project (openPMD VERSION 0.1.2 ) # LANGUAGES CXX
5
+ project (openPMD VERSION 0.2.0 ) # LANGUAGES CXX
6
6
7
7
# the openPMD "markup"/"schema" standard version
8
8
set (openPMD_STANDARD_VERSION 1.1.0)
Original file line number Diff line number Diff line change 78
78
# built documents.
79
79
#
80
80
# The short X.Y version.
81
- version = u'0.1.2 '
81
+ version = u'0.2.0 '
82
82
# The full version, including alpha/beta/rc tags.
83
- release = u'0.1.2-dev '
83
+ release = u'0.2.0-alpha '
84
84
85
85
# The language for content autogenerated by Sphinx. Refer to documentation
86
86
# for a list of supported languages.
Original file line number Diff line number Diff line change @@ -42,7 +42,7 @@ The supported version of the `openPMD standard <https://github.com/openPMD/openP
42
42
======================= ===================================
43
43
openPMD-api version supported openPMD standard versions
44
44
======================= ===================================
45
- ``0.1.0-0.1.2 `` (alpha) ``1.0.0-1.1.0 ``
45
+ ``0.1.0-0.2.0 `` (alpha) ``1.0.0-1.1.0 ``
46
46
``1.0.0+ `` ``1.0.1-1.1.0 `` (not released yet)
47
47
``2.0.0+ `` ``2.0.0+ `` (not released yet)
48
48
======================= ===================================
Original file line number Diff line number Diff line change 22
22
23
23
// version of the openPMD-api library
24
24
#define OPENPMDAPI_VERSION_MAJOR 0
25
- #define OPENPMDAPI_VERSION_MINOR 1
26
- #define OPENPMDAPI_VERSION_PATCH 2
27
- #define OPENPMDAPI_VERSION_LABEL " dev "
25
+ #define OPENPMDAPI_VERSION_MINOR 2
26
+ #define OPENPMDAPI_VERSION_PATCH 0
27
+ #define OPENPMDAPI_VERSION_LABEL " alpha "
28
28
29
29
// maximum supported version of the openPMD standard (read & write)
30
30
#define OPENPMD_STANDARD_MAJOR 1
You can’t perform that action at this time.
0 commit comments