From ab6d383db8a796d4a34ba3e868c7d4e1a8e508e2 Mon Sep 17 00:00:00 2001 From: Dario Nieuwenhuis Date: Sat, 29 May 2021 04:40:25 +0200 Subject: [PATCH] Bump to v0.7.3, update changelog. --- CHANGELOG.md | 6 ++++++ Cargo.toml | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 14fcc32..4be1d96 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Update `managed` from 0.7 to 0.8 ([442](https://github.com/smoltcp-rs/smoltcp/pull/442)) +## [0.7.3] - 2021-05-29 + +- Fix "unused attribute" error in recent nightlies. + ## [0.7.2] - 2021-05-29 - iface: check for ipv4 subnet broadcast addrs everywhere (#462) @@ -67,5 +71,7 @@ only processed when directed to the 255.255.255.255 address. ([377](https://gith - Simplify lifetime parameters of sockets, SocketSet, EthernetInterface ([410](https://github.com/smoltcp-rs/smoltcp/pull/410), [413](https://github.com/smoltcp-rs/smoltcp/pull/413)) [Unreleased]: https://github.com/smoltcp-rs/smoltcp/compare/v0.7.0...HEAD +[0.7.3]: https://github.com/smoltcp-rs/smoltcp/compare/v0.7.2...v0.7.3 +[0.7.2]: https://github.com/smoltcp-rs/smoltcp/compare/v0.7.1...v0.7.2 [0.7.1]: https://github.com/smoltcp-rs/smoltcp/compare/v0.7.0...v0.7.1 [0.7.0]: https://github.com/smoltcp-rs/smoltcp/compare/v0.6.0...v0.7.0 diff --git a/Cargo.toml b/Cargo.toml index c5f7f38..7ad4212 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "smoltcp" -version = "0.7.2" +version = "0.7.3" edition = "2018" authors = ["whitequark "] description = "A TCP/IP stack designed for bare-metal, real-time systems without a heap."