diff options
| author | Dániel Buga <[email protected]> | 2023-10-15 19:38:42 +0200 |
|---|---|---|
| committer | Dániel Buga <[email protected]> | 2023-10-16 20:59:06 +0200 |
| commit | 40e4ca4751dd935a4c52f893e8e058cfa75db893 (patch) | |
| tree | 906c4092a6fc047dc84f387f09524049bc74fd14 /embassy-net-driver-channel | |
| parent | 1d810baa18a0a7d2df74aa3a8abfb788b2e93924 (diff) | |
Prepare embassy-net(/-driver,/-driver-channel) 0.2.0
Diffstat (limited to 'embassy-net-driver-channel')
| -rw-r--r-- | embassy-net-driver-channel/CHANGELOG.md | 18 | ||||
| -rw-r--r-- | embassy-net-driver-channel/Cargo.toml | 4 |
2 files changed, 20 insertions, 2 deletions
diff --git a/embassy-net-driver-channel/CHANGELOG.md b/embassy-net-driver-channel/CHANGELOG.md new file mode 100644 index 000000000..589996cfd --- /dev/null +++ b/embassy-net-driver-channel/CHANGELOG.md | |||
| @@ -0,0 +1,18 @@ | |||
| 1 | # Changelog | ||
| 2 | |||
| 3 | All notable changes to this project will be documented in this file. | ||
| 4 | |||
| 5 | The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), | ||
| 6 | and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). | ||
| 7 | |||
| 8 | ## 0.2.0 - 2023-10-15 | ||
| 9 | |||
| 10 | - Update embassy-net-driver | ||
| 11 | - `Runner::new` now takes an `embassy_net_driver::HardwareAddress` parameter | ||
| 12 | - Added `Runner::set_ieee802154_address`, `Runner::ieee802154_address` | ||
| 13 | |||
| 14 | ## 0.1.0 - 2023-06-29 | ||
| 15 | |||
| 16 | - First release | ||
| 17 | |||
| 18 | |||
diff --git a/embassy-net-driver-channel/Cargo.toml b/embassy-net-driver-channel/Cargo.toml index 4588af02d..2fd26a7ca 100644 --- a/embassy-net-driver-channel/Cargo.toml +++ b/embassy-net-driver-channel/Cargo.toml | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | [package] | 1 | [package] |
| 2 | name = "embassy-net-driver-channel" | 2 | name = "embassy-net-driver-channel" |
| 3 | version = "0.1.0" | 3 | version = "0.2.0" |
| 4 | edition = "2021" | 4 | edition = "2021" |
| 5 | license = "MIT OR Apache-2.0" | 5 | license = "MIT OR Apache-2.0" |
| 6 | description = "High-level channel-based driver for the `embassy-net` async TCP/IP network stack." | 6 | description = "High-level channel-based driver for the `embassy-net` async TCP/IP network stack." |
| @@ -26,4 +26,4 @@ log = { version = "0.4.14", optional = true } | |||
| 26 | 26 | ||
| 27 | embassy-sync = { version = "0.3.0", path = "../embassy-sync" } | 27 | embassy-sync = { version = "0.3.0", path = "../embassy-sync" } |
| 28 | embassy-futures = { version = "0.1.0", path = "../embassy-futures" } | 28 | embassy-futures = { version = "0.1.0", path = "../embassy-futures" } |
| 29 | embassy-net-driver = { version = "0.1.0", path = "../embassy-net-driver" } | 29 | embassy-net-driver = { version = "0.2.0", path = "../embassy-net-driver" } |
