From 207dd34c3ac37f5a3a4c8b86b27cde6eb486528c Mon Sep 17 00:00:00 2001 From: Ryan Summers Date: Mon, 13 Dec 2021 10:43:45 +0100 Subject: [PATCH] Preparing for 0.2.0 release --- CHANGELOG.md | 26 +++++++++++++++++--------- Cargo.toml | 2 +- 2 files changed, 18 insertions(+), 10 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 86f8164..f4667d4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,21 +2,29 @@ This document describes the changes to smoltcp-nal between releases. -# Unreleased +# [Unreleased] + +# [0.2.0] - 2021-12-13 + +## Added * Added a reset API to close all sockets and reset DHCP whenever a link is lost. Updated DHCP to close sockets if local address changes. -* Upgraded to 0.6.1 of heapless to address security vulnerability * Adding support for DHCP IP assignment and management. -* Fixed multiple bugs causing mismatch between ports in used_sockets and actual ports used by - sockets -* Updating `embedded-nal` to 0.6 * Added UDP client support -* Updated `nanorand` to 0.6 * Added polling via an `embedded_time::Clock` * Added `shared-stack` feature for the new `shared` module -* Updated to `smoltcp` version 0.8 -## Version 0.1.0 -Version 0.1.0 was published on 2021-02-17 +## Fixed +* Fixed multiple bugs causing mismatch between ports in used_sockets and actual ports used by + sockets +* Upgraded to 0.6.1 of heapless to address security vulnerability +* Updated `nanorand` to 0.6 +* Updating `embedded-nal` to 0.6 +* Updated to `smoltcp` version 0.8 +# Version [0.1.0] - 2021-02-17 * Initial library release and publish to crates.io + +[Unreleased]: https://github.com/quartiq/smoltcp-nal/compare/0.2.0...HEAD +[0.2.0]: https://github.com/quartiq/smoltcp-nal/tag/0.2.0 +[0.1.0]: https://github.com/quartiq/smoltcp-nal/tag/0.1.0 diff --git a/Cargo.toml b/Cargo.toml index 3ba127d..f7ae4eb 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "smoltcp-nal" -version = "0.1.0" +version = "0.2.0" authors = ["Ryan Summers "] edition = "2018" license = "MIT"