From a1fe08ffe7367fd08f49d9475cd26e171533076f Mon Sep 17 00:00:00 2001 From: Chuck Atkins Date: Tue, 26 Jul 2022 14:27:58 -0400 Subject: [PATCH] Bump version to v2.8.3 --- CMakeLists.txt | 2 +- ReadMe.md | 2 +- docs/user_guide/source/conf.py | 2 +- docs/user_guide/source/setting_up/source/cmake.rst | 4 ++-- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 82df93be63..6047ac56a5 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -14,7 +14,7 @@ endif() include(${CMAKE_CURRENT_LIST_DIR}/cmake/ADIOSFunctions.cmake) -setup_version(2.8.2) +setup_version(2.8.3) project(ADIOS2 VERSION ${ADIOS2_VERSION}) diff --git a/ReadMe.md b/ReadMe.md index ad7e0ebe09..8250bda57a 100644 --- a/ReadMe.md +++ b/ReadMe.md @@ -72,7 +72,7 @@ Once ADIOS2 is installed refer to: ## Releases -* Latest release: [v2.8.2](https://github.com/ornladios/ADIOS2/releases/tag/v2.8.2) +* Latest release: [v2.8.3](https://github.com/ornladios/ADIOS2/releases/tag/v2.8.3) * Previous releases: [https://github.com/ornladios/ADIOS2/releases](https://github.com/ornladios/ADIOS2/releases) diff --git a/docs/user_guide/source/conf.py b/docs/user_guide/source/conf.py index d80573cf1b..53c5f10f0b 100644 --- a/docs/user_guide/source/conf.py +++ b/docs/user_guide/source/conf.py @@ -76,7 +76,7 @@ # The short X.Y version. version = u'2' # The full version, including alpha/beta/rc tags. -release = u'2.8.2' +release = u'2.8.3' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/docs/user_guide/source/setting_up/source/cmake.rst b/docs/user_guide/source/setting_up/source/cmake.rst index 8f01ffbefd..a2399c49f4 100644 --- a/docs/user_guide/source/setting_up/source/cmake.rst +++ b/docs/user_guide/source/setting_up/source/cmake.rst @@ -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.2 an optimized (Release) version of ADIOS2. +Example: the following configuration will build, test and install under /opt/adios2/2.8.3 an optimized (Release) version of ADIOS2. .. code-block:: bash $ cd build - $ cmake -DADIOS2_USE_Fortran=ON -DCMAKE_INSTALL_PREFIX=/opt/adios2/2.8.2 -DCMAKE_BUILD_Type=Release ../ADIOS2 + $ cmake -DADIOS2_USE_Fortran=ON -DCMAKE_INSTALL_PREFIX=/opt/adios2/2.8.3 -DCMAKE_BUILD_Type=Release ../ADIOS2 $ make -j16 $ ctest $ make install