Skip to content

Commit

Permalink
Merge pull request #3975 from vicentebolea/bump-release-version
Browse files Browse the repository at this point in the history
Bump version to v2.10.0-rc1
  • Loading branch information
vicentebolea committed Dec 29, 2023
2 parents 3f91c41 + 22976bf commit 68f8b41
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 6 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.0)
setup_version(2.10.0)

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 @@ -71,7 +71,7 @@ Once ADIOS2 is installed refer to:

## Releases

* Latest release: [v2.9.2](https://github.com/ornladios/ADIOS2/releases/tag/v2.9.2)
* Latest release: [v2.10.0-rc1](https://github.com/ornladios/ADIOS2/releases/tag/v2.10.0-rc1)

* 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 @@ -74,7 +74,7 @@
# The short X.Y version.
version = u'2'
# The full version, including alpha/beta/rc tags.
release = u'2.9.0'
release = u'2.10.0-rc1'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
3 changes: 2 additions & 1 deletion source/adios2/engine/bp5/BP5Writer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1236,7 +1236,8 @@ void BP5Writer::MakeHeader(std::vector<char> &buffer, size_t &position, const st
}

const std::string majorVersion(std::to_string(ADIOS2_VERSION_MAJOR));
const std::string minorVersion(std::to_string(ADIOS2_VERSION_MINOR));
const char minorVersionChar = '0' + ADIOS2_VERSION_MINOR;
const std::string minorVersion(1, minorVersionChar);
const std::string patchVersion(std::to_string(ADIOS2_VERSION_PATCH));

// byte 0-31: Readable tag
Expand Down
3 changes: 2 additions & 1 deletion source/adios2/toolkit/format/bp/BPSerializer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,8 @@ void BPSerializer::PutMinifooter(const uint64_t pgIndexStart, const uint64_t var
};

const std::string majorVersion(std::to_string(ADIOS2_VERSION_MAJOR));
const std::string minorVersion(std::to_string(ADIOS2_VERSION_MINOR));
const char minorVersionChar = '0' + ADIOS2_VERSION_MINOR;
const std::string minorVersion(1, minorVersionChar);
const std::string patchVersion(std::to_string(ADIOS2_VERSION_PATCH));

const std::string versionLongTag("ADIOS-BP v" + majorVersion + "." + minorVersion + "." +
Expand Down
3 changes: 2 additions & 1 deletion source/adios2/toolkit/format/bp/bp4/BP4Serializer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,8 @@ void BP4Serializer::MakeHeader(BufferSTL &b, const std::string fileType, const b
}

const std::string majorVersion(std::to_string(ADIOS2_VERSION_MAJOR));
const std::string minorVersion(std::to_string(ADIOS2_VERSION_MINOR));
const char minorVersionChar = '0' + ADIOS2_VERSION_MINOR;
const std::string minorVersion(1, minorVersionChar);
const std::string patchVersion(std::to_string(ADIOS2_VERSION_PATCH));

// byte 0-31: Readable tag
Expand Down

0 comments on commit 68f8b41

Please sign in to comment.