Skip to content

Commit

Permalink
Preparing V1.10.0-rc2
Browse files Browse the repository at this point in the history
  • Loading branch information
hkaiser committed May 10, 2024
1 parent ead4543 commit 4d51e9d
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
4 changes: 2 additions & 2 deletions CMakeLists.txt
Expand Up @@ -60,8 +60,8 @@ endif()
set(HPX_VERSION_MAJOR 1)
set(HPX_VERSION_MINOR 10)
set(HPX_VERSION_SUBMINOR 0)
set(HPX_VERSION_DATE 20240501)
set(HPX_VERSION_TAG "-rc1")
set(HPX_VERSION_DATE 20240510)
set(HPX_VERSION_TAG "-rc2")

set(HPX_VERSION
"${HPX_VERSION_MAJOR}.${HPX_VERSION_MINOR}.${HPX_VERSION_SUBMINOR}"
Expand Down
4 changes: 2 additions & 2 deletions cmake/HPX_UpdateGitDocs.cmake
Expand Up @@ -128,7 +128,7 @@ if(HPX_WITH_GIT_TAG)
# files to the "latest" directory. The regex only matches full version numbers
# with three numerical components (X.Y.Z). It does not match release
# candidates or other non-version tag names.
if("${HPX_WITH_GIT_TAG}" MATCHES "v^[0-9]+\\.[0-9]+\\.[0-9]+$")
if("${HPX_WITH_GIT_TAG}" MATCHES "v[0-9]+\\.[0-9]+\\.[0-9]+$")
message("Updating latest directory")
set(DOCS_LATEST_DEST "${HPX_BINARY_DIR}/docs/gh-pages/latest")
file(REMOVE_RECURSE "${DOCS_LATEST_DEST}")
Expand Down Expand Up @@ -198,7 +198,7 @@ if(NOT "${git_diff_index_result}" EQUAL "0")

# push everything up to github
execute_process(
COMMAND "${GIT_EXECUTABLE}" push
COMMAND "${GIT_EXECUTABLE}" push --force
WORKING_DIRECTORY "${HPX_BINARY_DIR}/docs/gh-pages"
RESULT_VARIABLE git_push_result
ERROR_VARIABLE git_pull_result_message COMMAND_ECHO STDERR
Expand Down
2 changes: 2 additions & 0 deletions docs/sphinx/releases/whats_new_1_10_0.rst
Expand Up @@ -97,6 +97,8 @@ Closed issues
Closed pull requests
====================

* :hpx-pr:`6485` - Destructive interference size
* :hpx-pr:`6484` - Improve performance counter error handling
* :hpx-pr:`6482` - Generalize the notion of bitwise serialization
* :hpx-pr:`6481` - Fixing use of HPX_WITH_CXX_STANDARD
* :hpx-pr:`6480` - Remove equal_to from hpx::any
Expand Down

0 comments on commit 4d51e9d

Please sign in to comment.