Unverified Commit 8121b202 authored by Atkins, Charles Vernon's avatar Atkins, Charles Vernon Committed by GitHub
Browse files

Merge pull request #3141 from chuckatkins/bump-release-version

Bump version to v2.8.0
parents d928a83a 9fdc1d8d
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -14,7 +14,7 @@ endif()

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

setup_version(2.7.1)
setup_version(2.8.0)

project(ADIOS2 VERSION ${ADIOS2_VERSION})

+1 −1
Original line number Diff line number Diff line
@@ -72,7 +72,7 @@ Once ADIOS2 is installed refer to:

## Releases

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

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

+2 −2
Original line number Diff line number Diff line
@@ -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.7.1 only XML is supported, v2.7.1 and beyond support XML as well as YAML.
Up to version v2.8.0 only XML is supported, v2.8.0 and beyond support XML as well as YAML.

.. warning::

@@ -51,7 +51,7 @@ XML
YAML
----

Starting with v2.7.1, ADIOS supports YAML configuration files.
Starting with v2.6.0, ADIOS supports YAML configuration files.
The syntax follows strict use of the YAML node keywords mapping to the ADIOS2 components hierarchy.
If a keyword is unknown ADIOS2 simply ignores it.
For an example file refer to `adios2 config file example in our repo. <https://github.com/ornladios/ADIOS2/tree/master/testing/adios2/yaml/proto.yaml>`_
+1 −1
Original line number Diff line number Diff line
@@ -76,7 +76,7 @@ author = u'Oak Ridge National Laboratory'
# The short X.Y version.
version = u'2'
# The full version, including alpha/beta/rc tags.
release = u'2.7.1'
release = u'2.8.0'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
+2 −2
Original line number Diff line number Diff line
@@ -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.7.1 an optimized (Release) version of ADIOS2.
Example: the following configuration will build, test and install under /opt/adios2/2.8.0 an optimized (Release) version of ADIOS2.

.. code-block:: bash

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