Skip to content

Commit

Permalink
Merge pull request eclipse-iceoryx#544 from elfenpiff/iox2-532-update…
Browse files Browse the repository at this point in the history
…-release-notes

[eclipse-iceoryx#532] Update release notes
  • Loading branch information
elfenpiff authored Dec 5, 2024
2 parents ad49e19 + 1d92eb4 commit 54ebc96
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 54ebc96

Please sign in to comment.