diff --git a/CHANGELOG.md b/CHANGELOG.md index 31b3760..41f13bc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. ## [Unreleased] +No unreleased changes yet + +## [0.9.0] - 2024-09-20 + - Bump MSRV to 1.77.0 for `ip_in_core`. - Removed the `no-std-net` and `ip_in_core` features, `ip_in_core` is now the default. @@ -83,7 +87,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. Initial release to crates.io. -[Unreleased]: https://github.com/rust-embedded-community/embedded-nal/compare/v0.8.0...HEAD +[Unreleased]: https://github.com/rust-embedded-community/embedded-nal/compare/v0.9.0...HEAD +[0.9.0]: https://github.com/rust-embedded-community/embedded-nal/compare/v0.8.0...v0.9.0 [0.8.0]: https://github.com/rust-embedded-community/embedded-nal/compare/v0.7.0...v0.8.0 [0.7.0]: https://github.com/rust-embedded-community/embedded-nal/compare/v0.6.0...v0.7.0 [0.6.0]: https://github.com/rust-embedded-community/embedded-nal/compare/v0.5.0...v0.6.0 diff --git a/Cargo.toml b/Cargo.toml index 982fb76..b368201 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "embedded-nal" -version = "0.8.0" +version = "0.9.0" authors = [ "Jonathan 'theJPster' Pallant ", "Mathias Koch ", diff --git a/embedded-nal-async/CHANGELOG.md b/embedded-nal-async/CHANGELOG.md index 99d1a99..0ab7b52 100644 --- a/embedded-nal-async/CHANGELOG.md +++ b/embedded-nal-async/CHANGELOG.md @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/). ## [Unreleased] +No unreleased changes yet + +## [0.8.0] - 2024-09-20 + - Removed the `ip_in_core` feature, this is now the default. ## [0.7.1] - 2023-11-28 @@ -47,7 +51,8 @@ Remove TcpClientStack, TcpFullStack and UDP traits pending traits that support s Initial release to crates.io. -[Unreleased]: https://github.com/rust-embedded-community/embedded-nal/compare/embedded-nal-async-v0.7.1...HEAD +[Unreleased]: https://github.com/rust-embedded-community/embedded-nal/compare/embedded-nal-async-v0.8.0...HEAD +[0.8.0]: https://github.com/rust-embedded-community/embedded-nal/compare/embedded-nal-async-v0.7.1...embedded-nal-async-v0.8.0 [0.7.1]: https://github.com/rust-embedded-community/embedded-nal/compare/embedded-nal-async-v0.7.0...embedded-nal-async-v0.7.1 [0.7.0]: https://github.com/rust-embedded-community/embedded-nal/compare/embedded-nal-async-v0.6.0...embedded-nal-async-v0.7.0 [0.6.0]: https://github.com/rust-embedded-community/embedded-nal/compare/embedded-nal-async-v0.5.0...embedded-nal-async-v0.6.0 diff --git a/embedded-nal-async/Cargo.toml b/embedded-nal-async/Cargo.toml index 83a07d1..39fc859 100644 --- a/embedded-nal-async/Cargo.toml +++ b/embedded-nal-async/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "embedded-nal-async" -version = "0.7.1" +version = "0.8.0" edition = "2021" description = "An Async Network Abstraction Layer (NAL) for Embedded Systems" license = "MIT OR Apache-2.0"