diff --git a/CHANGELOG.md b/CHANGELOG.md index 2fae043..c15914e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,10 @@ 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.1.2 - 2023-08-30 + +- Switch to Dead phase if LCP gets terminated by the peer. + ## 0.1.1 - 2023-08-26 - Fix sending replies to echo requests. diff --git a/Cargo.lock b/Cargo.lock index 5d7fabd..144aba7 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -622,7 +622,7 @@ dependencies = [ [[package]] name = "ppproto" -version = "0.1.1" +version = "0.1.2" dependencies = [ "defmt", "heapless", diff --git a/Cargo.toml b/Cargo.toml index eccf8c2..e9bbf71 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -6,7 +6,7 @@ members = [ [package] name = "ppproto" -version = "0.1.1" +version = "0.1.2" edition = "2021" description = "Point-to-Point Protocol (PPP) for embedded systems. `no-std` compatible, no alloc (heap) required." repository = "https://github.com/embassy-rs/ppproto"