Skip to content

Commit 2ce56e9

Browse files
committed
Release embassy-net-ppp v0.2.
1 parent 31e0794 commit 2ce56e9

File tree

3 files changed

+18
-3
lines changed

3 files changed

+18
-3
lines changed

embassy-net-ppp/CHANGELOG.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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.

embassy-net-ppp/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "embassy-net-ppp"
3-
version = "0.1.0"
3+
version = "0.2.0"
44
description = "embassy-net driver for PPP over Serial"
55
keywords = ["embedded", "ppp", "embassy-net", "embedded-hal-async", "async"]
66
categories = ["embedded", "hardware-support", "no-std", "network-programming", "asynchronous"]
@@ -20,7 +20,7 @@ log = { version = "0.4.14", optional = true }
2020
embedded-io-async = { version = "0.6.1" }
2121
embassy-net-driver-channel = { version = "0.3.0", path = "../embassy-net-driver-channel" }
2222
embassy-futures = { version = "0.1.0", path = "../embassy-futures" }
23-
ppproto = { version = "0.2.0"}
23+
ppproto = { version = "0.2.1"}
2424
embassy-sync = { version = "0.6.1", path = "../embassy-sync" }
2525

2626
[package.metadata.embassy_docs]

examples/std/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ embassy-executor = { version = "0.7.0", path = "../../embassy-executor", feature
1010
embassy-time = { version = "0.4.0", path = "../../embassy-time", features = ["log", "std", ] }
1111
embassy-net = { version = "0.6.0", path = "../../embassy-net", features=[ "log", "medium-ethernet", "medium-ip", "tcp", "udp", "dns", "dhcpv4", "proto-ipv6"] }
1212
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"]}
1414
embedded-io-async = { version = "0.6.1" }
1515
embedded-io-adapters = { version = "0.6.1", features = ["futures-03"] }
1616
critical-section = { version = "1.1", features = ["std"] }

0 commit comments

Comments
 (0)