From 2ce56e9999287e8dcb9ac8d7a5825f21efba8d21 Mon Sep 17 00:00:00 2001 From: Dario Nieuwenhuis Date: Sun, 12 Jan 2025 20:55:59 +0100 Subject: Release embassy-net-ppp v0.2. --- embassy-net-ppp/CHANGELOG.md | 15 +++++++++++++++ embassy-net-ppp/Cargo.toml | 4 ++-- 2 files changed, 17 insertions(+), 2 deletions(-) create mode 100644 embassy-net-ppp/CHANGELOG.md (limited to 'embassy-net-ppp') 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 @@ +# 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. 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 @@ [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] -- cgit