@@ -7,9 +7,12 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
7
7
8
8
## [ Unreleased]
9
9
10
+ - Bump MSRV to 1.60.0 (required for Edition 2021)
11
+ - Switch to Edition 2021
12
+
10
13
## [ 0.7.0] - 2023-06-21
11
14
12
- * Add blanket impls of all the traits for mutable references.
15
+ - Add blanket impls of all the traits for mutable references.
13
16
- Bump dependency version of ` no-std-net ` to ` v0.6 ` .
14
17
- Bump MSRV to 1.53.0 due to ` no-std-net ` 's use of or-patterns.
15
18
- 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.
30
33
## [ 0.4.0] - 2021-03-05
31
34
32
35
### Changed
36
+
33
37
- Changed [ ` Dns ` ] ( ./src/dns.rs ) methods to return ` nb::Result<..> ` to allow non-blocking implementations.
34
38
- Bump dependency version of ` heapless ` to ` v0.6.1 ` to address security issue of sub-dependency.
35
39
- Bump dependency version of ` no-std-net ` to ` v0.5 ` .
36
40
- Bump MSRV to 1.46.0 to get ` const-fn ` for ` no-std-net ` .
37
41
38
-
39
42
## [ 0.3.0] - 2021-02-15
40
43
41
44
### Added
45
+
42
46
- New optional struct [ ` SharedNal ` ] ( ./src/stack/share.rs ) that can share a single underlying implementation among several users within a thread.
43
47
44
48
### Changed
49
+
45
50
- Changed the names of ` UdpClient ` /` TcpClient ` to ` UdpClientStack ` /` TcpClientStack `
46
51
- Changed the names of ` UdpServer ` /` TcpServer ` to ` UdpFullStack ` /` TcpFullStack `
47
52
- 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.
50
55
## [ 0.2.0] - 2020-12-02
51
56
52
57
### Added
58
+
53
59
- Added a new ` UdpServer ` trait with server-specific methods
54
60
- Added a new ` TcpServer ` trait with server-specific methods
55
61
56
62
### Changed
63
+
57
64
- Changed the ` UdpStack::receive ` method to return the packet sender address, along with the packet length
58
65
- Changed the name of ` UdpStack ` to ` UdpClient `
59
66
- Changed name of ` TcpStack ` to ` TcpClient `
@@ -63,6 +70,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
63
70
- Updated ` UdpStack::connect() ` to modify an existing socket
64
71
65
72
### Removed
73
+
66
74
- Removed ` Mode ` enum, implementations should instead use ` nb::WouldBlock `
67
75
68
76
## [ 0.1.0] - 2020-08-26
0 commit comments