Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump to v2.8.1 release #3229

Merged
merged 1 commit into from
Jun 2, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ endif()

include(${CMAKE_CURRENT_LIST_DIR}/cmake/ADIOSFunctions.cmake)

setup_version(2.8.0)
setup_version(2.8.1)

project(ADIOS2 VERSION ${ADIOS2_VERSION})

Expand Down
2 changes: 1 addition & 1 deletion ReadMe.md
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ Once ADIOS2 is installed refer to:

## Releases

* Latest release: [v2.8.0](https://github.com/ornladios/ADIOS2/releases/tag/v2.80)
* Latest release: [v2.8.1](https://github.com/ornladios/ADIOS2/releases/tag/v2.81)

* Previous releases: [https://github.com/ornladios/ADIOS2/releases](https://github.com/ornladios/ADIOS2/releases)

Expand Down
2 changes: 1 addition & 1 deletion docs/user_guide/source/components/runtime.rst
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ ADIOS2 supports passing an optional runtime configuration file to the :ref:`ADIO
This file contains key-value pairs equivalent to the compile time ``IO::SetParameters`` (``adios2_set_parameter`` in C, Fortran), and ``IO::AddTransport`` (``adios2_set_transport_parameter`` in C, Fortran).

Each ``Engine`` and ``Operator`` must provide a set of available parameters as described in the :ref:`Supported Engines` section.
Up to version v2.8.0 only XML is supported, v2.8.0 and beyond support XML as well as YAML.
Prior to version v2.6.0 only XML is supported; v2.6.0 and later support both XML and YAML.

.. warning::

Expand Down
2 changes: 1 addition & 1 deletion docs/user_guide/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@
# The short X.Y version.
version = u'2'
# The full version, including alpha/beta/rc tags.
release = u'2.8.0'
release = u'2.8.1'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
4 changes: 2 additions & 2 deletions docs/user_guide/source/setting_up/source/cmake.rst
Original file line number Diff line number Diff line change
Expand Up @@ -132,12 +132,12 @@ Notes:
$ export CMAKE_PREFIX_PATH=/opt/foo/bar
$ cmake -DHDF5_ROOT=/opt/hdf5/1.13.0 ../ADIOS2

Example: the following configuration will build, test and install under /opt/adios2/2.8.0 an optimized (Release) version of ADIOS2.
Example: the following configuration will build, test and install under /opt/adios2/2.8.1 an optimized (Release) version of ADIOS2.

.. code-block:: bash

$ cd build
$ cmake -DADIOS2_USE_Fortran=ON -DCMAKE_INSTALL_PREFIX=/opt/adios2/2.8.0 -DCMAKE_BUILD_Type=Release ../ADIOS2
$ cmake -DADIOS2_USE_Fortran=ON -DCMAKE_INSTALL_PREFIX=/opt/adios2/2.8.1 -DCMAKE_BUILD_Type=Release ../ADIOS2
$ make -j16
$ ctest
$ make install
Expand Down