Skip to content

v0.9.0

Latest

Choose a tag to compare

@takasehideki takasehideki released this 14 Apr 10:56
· 115 commits to main since this release
04c1c2a

Currently, Zenohex uses version 1.9.0 of Zenoh.

⚠️⚠️ Breaking Change!! ⚠️⚠️

The function Zenohex.Config.update_in/3 has been removed in v0.9.0.
For updating Zenoh configurations, please use Zenohex.Config.insert_json5/3 instead.

Migration method from update_in/3

### Past usage with `update_in/3`:
Zenohex.Config.update_in(config, ["scouting", "delay"], fn _ -> 100 end)
### Use `insert_json5/3` with the key path joined by `/`:
Zenohex.Config.insert_json5(config, "scouting/delay", "100")

What's Changed

Full Changelog: v0.8.0...v0.9.0