Skip to content

Commit cc41b97

Browse files
authored
Merge pull request #231 from ax3l/topic-version011
Version: 0.1.1-alpha
2 parents aca17f8 + 803fffa commit cc41b97

File tree

5 files changed

+15
-14
lines changed

5 files changed

+15
-14
lines changed

CHANGELOG.rst

+4-3
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,12 @@ Changelog
55

66
0.1.1-alpha
77
-----------
8-
**Date:** TBD
8+
**Date:** 2018-06-07
99

10-
[Title TBA]
10+
ADIOS1 Build Fixes & Less Flushes
1111

12-
[Short Summary]
12+
We fixed build issues with the ADIOS1 backend.
13+
The number of performed flushes in backends was generally minimized.
1314

1415
Changes to "0.1.0-alpha"
1516
^^^^^^^^^^^^^^^^^^^^^^^^

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.1.0) # LANGUAGES CXX
5+
project(openPMD VERSION 0.1.1) # LANGUAGES CXX
66

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

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -218,7 +218,7 @@ export CMAKE_PREFIX_PATH=$HOME/somepath:$CMAKE_PREFIX_PATH
218218
Use the following lines in your projects `CMakeLists.txt`:
219219
```cmake
220220
# supports: COMPONENTS MPI NOMPI HDF5 ADIOS1 ADIOS2
221-
find_package(openPMD 0.1.0 CONFIG)
221+
find_package(openPMD 0.1.1 CONFIG)
222222
223223
if(openPMD_FOUND)
224224
target_link_libraries(YourTarget PRIVATE openPMD::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.1.0'
81+
version = u'0.1.1'
8282
# The full version, including alpha/beta/rc tags.
83-
release = u'0.1.0-alpha'
83+
release = u'0.1.1-alpha'
8484

8585
# The language for content autogenerated by Sphinx. Refer to documentation
8686
# for a list of supported languages.

docs/source/index.rst

+7-7
Original file line numberDiff line numberDiff line change
@@ -39,13 +39,13 @@ openPMD-api is a library using `semantic versioning <https://semver.org/>`_, sta
3939
The supported version of the `openPMD standard <https://github.com/openPMD/openPMD-standard>`_ are reflected as follows:
4040
``standardMAJOR.apiMAJOR.apiMINOR``.
4141

42-
=================== ===================================
43-
openPMD-api version supported openPMD standard versions
44-
=================== ===================================
45-
``0.1.0+`` (alpha) ``1.0.0-1.1.0``
46-
``1.0.0+`` ``1.X`` (not released yet)
47-
``2.0.0+`` ``2.X`` (not released yet)
48-
=================== ===================================
42+
======================= ===================================
43+
openPMD-api version supported openPMD standard versions
44+
======================= ===================================
45+
``0.1.0-0.1.1`` (alpha) ``1.0.0-1.1.0``
46+
``1.0.0+`` ``1.0.1-1.1.0`` (not released yet)
47+
``2.0.0+`` ``2.0.0+`` (not released yet)
48+
======================= ===================================
4949

5050
************
5151
Installation

0 commit comments

Comments
 (0)