Skip to content

Commit

Permalink
Merge pull request #1090 from aurianer/release-0.24.X
Browse files Browse the repository at this point in the history
Add release notes for pika 0.24.0; update tags and version
  • Loading branch information
aurianer committed Apr 12, 2024
2 parents 023afa1 + b3d74c1 commit cf5c360
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 3 deletions.
6 changes: 3 additions & 3 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -44,10 +44,10 @@ set_property(GLOBAL PROPERTY USE_FOLDERS ON)
# Build all of pika
# ##################################################################################################
set(PIKA_VERSION_MAJOR 0)
set(PIKA_VERSION_MINOR 23)
set(PIKA_VERSION_MINOR 24)
set(PIKA_VERSION_PATCH 0)
set(PIKA_VERSION_DATE 20240307)
set(PIKA_VERSION_TAG "-trunk")
set(PIKA_VERSION_DATE 20240412)
set(PIKA_VERSION_TAG "")

set(PIKA_VERSION "${PIKA_VERSION_MAJOR}.${PIKA_VERSION_MINOR}.${PIKA_VERSION_PATCH}")
set(PIKA_LIBRARY_VERSION "${PIKA_VERSION}")
Expand Down
15 changes: 15 additions & 0 deletions docs/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,21 @@

# Changelog

## 0.24.0 (2024-04-12)

### New features

- Avoid unnecessary copies of CUDA streams and handles to improve profiling appearance. ([#1056](https://github.com/pika-org/pika/pull/1056))
- Avoid use of `std::invoke_result` in `tag_invoke_result` variants to improve compilation times. ([#1058](https://github.com/pika-org/pika/pull/1058), [#1060](https://github.com/pika-org/pika/pull/1060))

### Breaking changes

### Bugfixes

- Fix use of `--pika:print-bind` with `--pika:bind=none`. ([#1082](https://github.com/pika-org/pika/pull/1082), [#1087](https://github.com/pika-org/pika/pull/1087))
- Work around compilation issue with CUDA 12.4. ([#1084](https://github.com/pika-org/pika/pull/1084))
- Make sure `main` is never defined in `libpika.so`. ([#1088](https://github.com/pika-org/pika/pull/1088))

## 0.23.0 (2024-03-07)

### New features
Expand Down

0 comments on commit cf5c360

Please sign in to comment.