diff options
| author | Dario Nieuwenhuis <[email protected]> | 2025-01-12 20:55:59 +0100 |
|---|---|---|
| committer | Dario Nieuwenhuis <[email protected]> | 2025-01-12 20:55:59 +0100 |
| commit | 2ce56e9999287e8dcb9ac8d7a5825f21efba8d21 (patch) | |
| tree | 96db0460097510f22c564a695b602b61bcf96164 | |
| parent | 31e0794e79daec4f990acc2b6cbf41a48283cebb (diff) | |
Release embassy-net-ppp v0.2.
| -rw-r--r-- | embassy-net-ppp/CHANGELOG.md | 15 | ||||
| -rw-r--r-- | embassy-net-ppp/Cargo.toml | 4 | ||||
| -rw-r--r-- | examples/std/Cargo.toml | 2 |
3 files changed, 18 insertions, 3 deletions
diff --git a/embassy-net-ppp/CHANGELOG.md b/embassy-net-ppp/CHANGELOG.md new file mode 100644 index 000000000..6ce64ddcb --- /dev/null +++ b/embassy-net-ppp/CHANGELOG.md | |||
| @@ -0,0 +1,15 @@ | |||
| 1 | # Changelog for embassy-net-ppp | ||
| 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 - 2025-01-12 | ||
| 9 | |||
| 10 | - Update `ppproto` to v0.2. | ||
| 11 | - Use `core::net` IP types for IPv4 configuration instead of a custom type. | ||
| 12 | |||
| 13 | ## 0.1.0 - 2024-01-12 | ||
| 14 | |||
| 15 | First release. | ||
diff --git a/embassy-net-ppp/Cargo.toml b/embassy-net-ppp/Cargo.toml index 9c214d5ae..414be5e01 100644 --- a/embassy-net-ppp/Cargo.toml +++ b/embassy-net-ppp/Cargo.toml | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | [package] | 1 | [package] |
| 2 | name = "embassy-net-ppp" | 2 | name = "embassy-net-ppp" |
| 3 | version = "0.1.0" | 3 | version = "0.2.0" |
| 4 | description = "embassy-net driver for PPP over Serial" | 4 | description = "embassy-net driver for PPP over Serial" |
| 5 | keywords = ["embedded", "ppp", "embassy-net", "embedded-hal-async", "async"] | 5 | keywords = ["embedded", "ppp", "embassy-net", "embedded-hal-async", "async"] |
| 6 | categories = ["embedded", "hardware-support", "no-std", "network-programming", "asynchronous"] | 6 | categories = ["embedded", "hardware-support", "no-std", "network-programming", "asynchronous"] |
| @@ -20,7 +20,7 @@ log = { version = "0.4.14", optional = true } | |||
| 20 | embedded-io-async = { version = "0.6.1" } | 20 | embedded-io-async = { version = "0.6.1" } |
| 21 | embassy-net-driver-channel = { version = "0.3.0", path = "../embassy-net-driver-channel" } | 21 | embassy-net-driver-channel = { version = "0.3.0", path = "../embassy-net-driver-channel" } |
| 22 | embassy-futures = { version = "0.1.0", path = "../embassy-futures" } | 22 | embassy-futures = { version = "0.1.0", path = "../embassy-futures" } |
| 23 | ppproto = { version = "0.2.0"} | 23 | ppproto = { version = "0.2.1"} |
| 24 | embassy-sync = { version = "0.6.1", path = "../embassy-sync" } | 24 | embassy-sync = { version = "0.6.1", path = "../embassy-sync" } |
| 25 | 25 | ||
| 26 | [package.metadata.embassy_docs] | 26 | [package.metadata.embassy_docs] |
diff --git a/examples/std/Cargo.toml b/examples/std/Cargo.toml index 44b62a616..3c9b571cd 100644 --- a/examples/std/Cargo.toml +++ b/examples/std/Cargo.toml | |||
| @@ -10,7 +10,7 @@ embassy-executor = { version = "0.7.0", path = "../../embassy-executor", feature | |||
| 10 | embassy-time = { version = "0.4.0", path = "../../embassy-time", features = ["log", "std", ] } | 10 | embassy-time = { version = "0.4.0", path = "../../embassy-time", features = ["log", "std", ] } |
| 11 | embassy-net = { version = "0.6.0", path = "../../embassy-net", features=[ "log", "medium-ethernet", "medium-ip", "tcp", "udp", "dns", "dhcpv4", "proto-ipv6"] } | 11 | embassy-net = { version = "0.6.0", path = "../../embassy-net", features=[ "log", "medium-ethernet", "medium-ip", "tcp", "udp", "dns", "dhcpv4", "proto-ipv6"] } |
| 12 | embassy-net-tuntap = { version = "0.1.0", path = "../../embassy-net-tuntap" } | 12 | embassy-net-tuntap = { version = "0.1.0", path = "../../embassy-net-tuntap" } |
| 13 | embassy-net-ppp = { version = "0.1.0", path = "../../embassy-net-ppp", features = ["log"]} | 13 | embassy-net-ppp = { version = "0.2.0", path = "../../embassy-net-ppp", features = ["log"]} |
| 14 | embedded-io-async = { version = "0.6.1" } | 14 | embedded-io-async = { version = "0.6.1" } |
| 15 | embedded-io-adapters = { version = "0.6.1", features = ["futures-03"] } | 15 | embedded-io-adapters = { version = "0.6.1", features = ["futures-03"] } |
| 16 | critical-section = { version = "1.1", features = ["std"] } | 16 | critical-section = { version = "1.1", features = ["std"] } |
