Skip to content

Commit

Permalink
[eclipse-iceoryx#532] Update release notes
Browse files Browse the repository at this point in the history
  • Loading branch information
elfenpiff committed Dec 5, 2024
1 parent ad49e19 commit 1d92eb4
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions doc/release-notes/iceoryx2-unreleased.md
Original file line number Diff line number Diff line change
Expand Up @@ -94,3 +94,19 @@
```

2. Removed `payload_type_layout()` from `publish_subscribe::Header`.

3. Renamed `max_slice_len()` into `initial_max_slice_len()`.

```rust
// old
let publisher = service
.publisher_builder()
.max_slice_len(16)
.create()?;

// new
let publisher = service
.publisher_builder()
.initial_max_slice_len(16)
.create()?;
```

0 comments on commit 1d92eb4

Please sign in to comment.