Release embassy-net-ppp v0.2.

This commit is contained in:
Dario Nieuwenhuis 2025-01-12 20:55:59 +01:00
parent 31e0794e79
commit 2ce56e9999
3 changed files with 18 additions and 3 deletions

View File

@ -0,0 +1,15 @@
# Changelog for embassy-net-ppp
All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## 0.2.0 - 2025-01-12
- Update `ppproto` to v0.2.
- Use `core::net` IP types for IPv4 configuration instead of a custom type.
## 0.1.0 - 2024-01-12
First release.

View File

@ -1,6 +1,6 @@
[package]
name = "embassy-net-ppp"
version = "0.1.0"
version = "0.2.0"
description = "embassy-net driver for PPP over Serial"
keywords = ["embedded", "ppp", "embassy-net", "embedded-hal-async", "async"]
categories = ["embedded", "hardware-support", "no-std", "network-programming", "asynchronous"]
@ -20,7 +20,7 @@ log = { version = "0.4.14", optional = true }
embedded-io-async = { version = "0.6.1" }
embassy-net-driver-channel = { version = "0.3.0", path = "../embassy-net-driver-channel" }
embassy-futures = { version = "0.1.0", path = "../embassy-futures" }
ppproto = { version = "0.2.0"}
ppproto = { version = "0.2.1"}
embassy-sync = { version = "0.6.1", path = "../embassy-sync" }
[package.metadata.embassy_docs]

View File

@ -10,7 +10,7 @@ embassy-executor = { version = "0.7.0", path = "../../embassy-executor", feature
embassy-time = { version = "0.4.0", path = "../../embassy-time", features = ["log", "std", ] }
embassy-net = { version = "0.6.0", path = "../../embassy-net", features=[ "log", "medium-ethernet", "medium-ip", "tcp", "udp", "dns", "dhcpv4", "proto-ipv6"] }
embassy-net-tuntap = { version = "0.1.0", path = "../../embassy-net-tuntap" }
embassy-net-ppp = { version = "0.1.0", path = "../../embassy-net-ppp", features = ["log"]}
embassy-net-ppp = { version = "0.2.0", path = "../../embassy-net-ppp", features = ["log"]}
embedded-io-async = { version = "0.6.1" }
embedded-io-adapters = { version = "0.6.1", features = ["futures-03"] }
critical-section = { version = "1.1", features = ["std"] }