From aebf1a53097928ba46c097b218e32bb5e084816f Mon Sep 17 00:00:00 2001 From: Julian Schmid Date: Sun, 24 Jul 2022 11:19:37 +0200 Subject: [PATCH] Updated for 0.12.0 release --- Cargo.toml | 2 +- README.md | 2 +- changelog.md | 4 ++++ src/lib.rs | 2 +- 4 files changed, 7 insertions(+), 3 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 765224c1..d306a413 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "etherparse" -version = "0.11.0" +version = "0.12.0" authors = ["Julian Schmid "] edition = "2018" repository = "https://github.com/JulianSchmid/etherparse" diff --git a/README.md b/README.md index 4bad02cd..e4b84cb3 100644 --- a/README.md +++ b/README.md @@ -24,7 +24,7 @@ Add the following to your `Cargo.toml`: ```toml [dependencies] -etherparse = "0.11.0" +etherparse = "0.12.0" ``` ## What is etherparse? diff --git a/changelog.md b/changelog.md index cb98044f..de85e5be 100644 --- a/changelog.md +++ b/changelog.md @@ -1,5 +1,9 @@ # Changelog: +## 0.12.0 + +* Add `payload_ether_type` method to `SlicedPacket` & `PacketHeaders` + ## 0.11.0 ### New Features: diff --git a/src/lib.rs b/src/lib.rs index 8b89967a..540c6f4b 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -15,7 +15,7 @@ //! //! ```toml //! [dependencies] -//! etherparse = "0.11.0" +//! etherparse = "0.12.0" //! ``` //! //! # What is etherparse?