@@ -7,9 +7,12 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
77
88## [ Unreleased]
99
10+ - Bump MSRV to 1.60.0 (required for Edition 2021)
11+ - Switch to Edition 2021
12+
1013## [ 0.7.0] - 2023-06-21
1114
12- * Add blanket impls of all the traits for mutable references.
15+ - Add blanket impls of all the traits for mutable references.
1316- Bump dependency version of ` no-std-net ` to ` v0.6 ` .
1417- Bump MSRV to 1.53.0 due to ` no-std-net ` 's use of or-patterns.
1518- Added support for ` core::net ` with the ` ip_in_core ` feature.
@@ -30,18 +33,20 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
3033## [ 0.4.0] - 2021-03-05
3134
3235### Changed
36+
3337- Changed [ ` Dns ` ] ( ./src/dns.rs ) methods to return ` nb::Result<..> ` to allow non-blocking implementations.
3438- Bump dependency version of ` heapless ` to ` v0.6.1 ` to address security issue of sub-dependency.
3539- Bump dependency version of ` no-std-net ` to ` v0.5 ` .
3640- Bump MSRV to 1.46.0 to get ` const-fn ` for ` no-std-net ` .
3741
38-
3942## [ 0.3.0] - 2021-02-15
4043
4144### Added
45+
4246- New optional struct [ ` SharedNal ` ] ( ./src/stack/share.rs ) that can share a single underlying implementation among several users within a thread.
4347
4448### Changed
49+
4550- Changed the names of ` UdpClient ` /` TcpClient ` to ` UdpClientStack ` /` TcpClientStack `
4651- Changed the names of ` UdpServer ` /` TcpServer ` to ` UdpFullStack ` /` TcpFullStack `
4752- Changed the method names ` Dns::gethostbyname ` /` Dns::gethostbyaddr ` to ` Dns::get_host_by_name ` /` Dns::get_host_by_address `
@@ -50,10 +55,12 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
5055## [ 0.2.0] - 2020-12-02
5156
5257### Added
58+
5359- Added a new ` UdpServer ` trait with server-specific methods
5460- Added a new ` TcpServer ` trait with server-specific methods
5561
5662### Changed
63+
5764- Changed the ` UdpStack::receive ` method to return the packet sender address, along with the packet length
5865- Changed the name of ` UdpStack ` to ` UdpClient `
5966- Changed name of ` TcpStack ` to ` TcpClient `
@@ -63,6 +70,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
6370- Updated ` UdpStack::connect() ` to modify an existing socket
6471
6572### Removed
73+
6674- Removed ` Mode ` enum, implementations should instead use ` nb::WouldBlock `
6775
6876## [ 0.1.0] - 2020-08-26
0 commit comments