diff --git a/CHANGELOG.rst b/CHANGELOG.rst
index ea459d6986..b1fa81c99b 100644
--- a/CHANGELOG.rst
+++ b/CHANGELOG.rst
@@ -5,11 +5,12 @@ Changelog
0.1.1-alpha
-----------
-**Date:** TBD
+**Date:** 2018-06-07
-[Title TBA]
+ADIOS1 Build Fixes & Less Flushes
-[Short Summary]
+We fixed build issues with the ADIOS1 backend.
+The number of performed flushes in backends was generally minimized.
Changes to "0.1.0-alpha"
^^^^^^^^^^^^^^^^^^^^^^^^
diff --git a/CMakeLists.txt b/CMakeLists.txt
index b81ca02e7a..688595fdb2 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -2,7 +2,7 @@
#
cmake_minimum_required(VERSION 3.10.0)
-project(openPMD VERSION 0.1.0) # LANGUAGES CXX
+project(openPMD VERSION 0.1.1) # LANGUAGES CXX
# the openPMD "markup"/"schema" standard version
set(openPMD_STANDARD_VERSION 1.1.0)
diff --git a/README.md b/README.md
index 3d190f4b0e..d117f9ccf1 100644
--- a/README.md
+++ b/README.md
@@ -218,7 +218,7 @@ export CMAKE_PREFIX_PATH=$HOME/somepath:$CMAKE_PREFIX_PATH
Use the following lines in your projects `CMakeLists.txt`:
```cmake
# supports: COMPONENTS MPI NOMPI HDF5 ADIOS1 ADIOS2
-find_package(openPMD 0.1.0 CONFIG)
+find_package(openPMD 0.1.1 CONFIG)
if(openPMD_FOUND)
target_link_libraries(YourTarget PRIVATE openPMD::openPMD)
diff --git a/docs/source/conf.py b/docs/source/conf.py
index 8a4cb303c1..bb2fe53ac0 100644
--- a/docs/source/conf.py
+++ b/docs/source/conf.py
@@ -78,9 +78,9 @@
# built documents.
#
# The short X.Y version.
-version = u'0.1.0'
+version = u'0.1.1'
# The full version, including alpha/beta/rc tags.
-release = u'0.1.0-alpha'
+release = u'0.1.1-alpha'
# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
diff --git a/docs/source/index.rst b/docs/source/index.rst
index 464ff77213..3312608b35 100644
--- a/docs/source/index.rst
+++ b/docs/source/index.rst
@@ -39,13 +39,13 @@ openPMD-api is a library using `semantic versioning `_, sta
The supported version of the `openPMD standard `_ are reflected as follows:
``standardMAJOR.apiMAJOR.apiMINOR``.
-=================== ===================================
-openPMD-api version supported openPMD standard versions
-=================== ===================================
-``0.1.0+`` (alpha) ``1.0.0-1.1.0``
-``1.0.0+`` ``1.X`` (not released yet)
-``2.0.0+`` ``2.X`` (not released yet)
-=================== ===================================
+======================= ===================================
+openPMD-api version supported openPMD standard versions
+======================= ===================================
+``0.1.0-0.1.1`` (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)
+======================= ===================================
************
Installation