Skip to content

Commit 83cb06a

Browse files
authored
Merge pull request #3888 from vicentebolea/bump-release-version
Bump version to v2.9.2
2 parents edbef26 + 8a37929 commit 83cb06a

File tree

5 files changed

+6
-7
lines changed

5 files changed

+6
-7
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ endif()
1414

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

17-
setup_version(2.9.1)
17+
setup_version(2.9.2)
1818

1919
project(ADIOS2 VERSION ${ADIOS2_VERSION})
2020

ReadMe.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ Once ADIOS2 is installed refer to:
7272

7373
## Releases
7474

75-
* Latest release: [v2.9.1](https://github.com/ornladios/ADIOS2/releases/tag/v2.9.1)
75+
* Latest release: [v2.9.2](https://github.com/ornladios/ADIOS2/releases/tag/v2.9.2)
7676

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

docs/user_guide/source/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@
7676
# The short X.Y version.
7777
version = u'2'
7878
# The full version, including alpha/beta/rc tags.
79-
release = u'2.9.1'
79+
release = u'2.9.2'
8080

8181
# The language for content autogenerated by Sphinx. Refer to documentation
8282
# for a list of supported languages.

docs/user_guide/source/setting_up/source/cmake.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -132,12 +132,12 @@ Notes:
132132
$ export CMAKE_PREFIX_PATH=/opt/foo/bar
133133
$ cmake -DHDF5_ROOT=/opt/hdf5/1.13.0 ../ADIOS2
134134
135-
Example: the following configuration will build, test and install under /opt/adios2/2.9.1 an optimized (Release) version of ADIOS2.
135+
Example: the following configuration will build, test and install under /opt/adios2/2.9.2 an optimized (Release) version of ADIOS2.
136136

137137
.. code-block:: bash
138138
139139
$ cd build
140-
$ cmake -DADIOS2_USE_Fortran=ON -DCMAKE_INSTALL_PREFIX=/opt/adios2/2.9.1 -DCMAKE_BUILD_Type=Release ../ADIOS2
140+
$ cmake -DADIOS2_USE_Fortran=ON -DCMAKE_INSTALL_PREFIX=/opt/adios2/2.9.2 -DCMAKE_BUILD_Type=Release ../ADIOS2
141141
$ make -j16
142142
$ ctest
143143
$ make install

scripts/ci/cmake-v2/ci-el8-gcc10-mpich.cmake

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22

33
include(ProcessorCount)
44
ProcessorCount(NCPUS)
5-
math(EXPR N2CPUS "${NCPUS}*2")
65

76
set(ENV{CC} gcc)
87
set(ENV{CXX} g++)
@@ -24,7 +23,7 @@ CMAKE_C_FLAGS:STRING=-Wall
2423
CMAKE_CXX_FLAGS:STRING=-Wall
2524
CMAKE_Fortran_FLAGS:STRING=-Wall
2625
27-
MPIEXEC_MAX_NUMPROCS:STRING=${N2CPUS}
26+
MPIEXEC_MAX_NUMPROCS:STRING=${NCPUS}
2827
")
2928

3029
set(CTEST_CMAKE_GENERATOR "Ninja")

0 commit comments

Comments
 (0)