Skip to content

Commit

Permalink
Merge pull request #3888 from vicentebolea/bump-release-version
Browse files Browse the repository at this point in the history
Bump version to v2.9.2
  • Loading branch information
vicentebolea authored Nov 1, 2023
2 parents edbef26 + 8a37929 commit 83cb06a
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 7 deletions.
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.9.1)
setup_version(2.9.2)

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.9.1](https://github.com/ornladios/ADIOS2/releases/tag/v2.9.1)
* Latest release: [v2.9.2](https://github.com/ornladios/ADIOS2/releases/tag/v2.9.2)

* 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/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.9.1'
release = u'2.9.2'

# 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.9.1 an optimized (Release) version of ADIOS2.
Example: the following configuration will build, test and install under /opt/adios2/2.9.2 an optimized (Release) version of ADIOS2.

.. code-block:: bash
$ cd build
$ cmake -DADIOS2_USE_Fortran=ON -DCMAKE_INSTALL_PREFIX=/opt/adios2/2.9.1 -DCMAKE_BUILD_Type=Release ../ADIOS2
$ cmake -DADIOS2_USE_Fortran=ON -DCMAKE_INSTALL_PREFIX=/opt/adios2/2.9.2 -DCMAKE_BUILD_Type=Release ../ADIOS2
$ make -j16
$ ctest
$ make install
Expand Down
3 changes: 1 addition & 2 deletions scripts/ci/cmake-v2/ci-el8-gcc10-mpich.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@

include(ProcessorCount)
ProcessorCount(NCPUS)
math(EXPR N2CPUS "${NCPUS}*2")

set(ENV{CC} gcc)
set(ENV{CXX} g++)
Expand All @@ -24,7 +23,7 @@ CMAKE_C_FLAGS:STRING=-Wall
CMAKE_CXX_FLAGS:STRING=-Wall
CMAKE_Fortran_FLAGS:STRING=-Wall
MPIEXEC_MAX_NUMPROCS:STRING=${N2CPUS}
MPIEXEC_MAX_NUMPROCS:STRING=${NCPUS}
")

set(CTEST_CMAKE_GENERATOR "Ninja")
Expand Down

0 comments on commit 83cb06a

Please sign in to comment.