aboutsummaryrefslogtreecommitdiff
path: root/embassy-net-driver
diff options
context:
space:
mode:
authorDániel Buga <[email protected]>2023-10-15 19:38:42 +0200
committerDániel Buga <[email protected]>2023-10-16 20:59:06 +0200
commit40e4ca4751dd935a4c52f893e8e058cfa75db893 (patch)
tree906c4092a6fc047dc84f387f09524049bc74fd14 /embassy-net-driver
parent1d810baa18a0a7d2df74aa3a8abfb788b2e93924 (diff)
Prepare embassy-net(/-driver,/-driver-channel) 0.2.0
Diffstat (limited to 'embassy-net-driver')
-rw-r--r--embassy-net-driver/CHANGELOG.md17
-rw-r--r--embassy-net-driver/Cargo.toml2
2 files changed, 18 insertions, 1 deletions
diff --git a/embassy-net-driver/CHANGELOG.md b/embassy-net-driver/CHANGELOG.md
new file mode 100644
index 000000000..7be622820
--- /dev/null
+++ b/embassy-net-driver/CHANGELOG.md
@@ -0,0 +1,17 @@
1# Changelog
2
3All notable changes to this project will be documented in this file.
4
5The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
8## 0.2.0 - 2023-10-15
9
10- Added `Driver::ieee802154_address`
11- Added `Medium::Ieee802154`
12
13## 0.1.0 - 2023-06-29
14
15- First release
16
17
diff --git a/embassy-net-driver/Cargo.toml b/embassy-net-driver/Cargo.toml
index e25950b6b..9cd6a2eaa 100644
--- a/embassy-net-driver/Cargo.toml
+++ b/embassy-net-driver/Cargo.toml
@@ -1,6 +1,6 @@
1[package] 1[package]
2name = "embassy-net-driver" 2name = "embassy-net-driver"
3version = "0.1.0" 3version = "0.2.0"
4edition = "2021" 4edition = "2021"
5license = "MIT OR Apache-2.0" 5license = "MIT OR Apache-2.0"
6description = "Driver trait for the `embassy-net` async TCP/IP network stack." 6description = "Driver trait for the `embassy-net` async TCP/IP network stack."