Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add release notes for 0.31.0 #1375

Merged
merged 1 commit into from
Dec 17, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions docs/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,24 @@

# Changelog

## 0.31.0 (2024-12-18)

### New features

- The `require_started` sender adaptor, `any_sender` and `unique_any_sender`, `async_rw_mutex`, and CUDA functionality have been documented. ([#1297](https://github.com/pika-org/pika/pull/1297), [#1309](https://github.com/pika-org/pika/pull/1309), [#1355](https://github.com/pika-org/pika/pull/1355), [#1356](https://github.com/pika-org/pika/pull/1356))
- The type-erased receiver used internally by `any_sender` no longer requires heap allocation. ([#1354](https://github.com/pika-org/pika/pull/1354))

### Breaking changes

- Support for ittnotify has been removed. ([#1290](https://github.com/pika-org/pika/pull/1290))
- The CUDA and HIP pools now create a fixed number of streams instead of creating streams based on the number of worker threads. **This is a silent breaking API change**. If you are creating pools with a custom number of streams make sure that the values are reasonable with the new behaviour. See the [API documentation](https://pikacpp.org/api.html#_CPPv4N4pika4cuda12experimental9cuda_poolE) for more details. ([#1294](https://github.com/pika-org/pika/pull/1294))
- The `set_value` CPO now uses member functions instead of `tag_invoke` to better align with P2300. ([#1295](https://github.com/pika-org/pika/pull/1295))
- `zip_iterator` has been removed. ([#1347](https://github.com/pika-org/pika/pull/1347))

### Bugfixes

- pika no longer sets the pthread name of the main thread. ([#1329](https://github.com/pika-org/pika/pull/1329))

## 0.30.1 (2024-11-19)

### New features
Expand Down
Loading