Releases: newAM/w5500-rs
Releases · newAM/w5500-rs
hl Version 0.10.0
Added
- Added support for
embedded-hal
version1.0.0-alpha.11
with theeh1
feature.
Changed
- Changed the name of the
embedded-hal
feature toeh0
. - Changed
Seek<E>::seek
toSeek::seek<E>
, moving the seek error generic from theSeek
trait to theseek
method. - Updated
w5500-ll
dependency from0.10.0
to0.11.0
.
dns Version 0.3.0
Added
- Added support for
embedded-hal
version1.0.0-alpha.11
with theeh1
feature.
Changed
- Changed the name of the
embedded-hal
feature toeh0
. - Updated
w5500-hl
dependency from0.9.0
to0.10.0
.
dhcp Version 0.5.0
Added
- Added support for
embedded-hal
version1.0.0-alpha.11
with theeh1
feature.
Changed
- Changed the name of the
embedded-hal
feature toeh0
. - Updated
w5500-hl
dependency from0.9.0
to0.10.0
.
Fixed
- Fixed compatibility with dnsmasq by adding a server identifier (option 54) to the REQUEST.
tls version 0.1.3
Changed
- Updated
p256-cm4
from0.1.1
to0.3.0
.
tls version 0.1.2
Added
- Added a p256 implementation optimized for the Cortex-M4 CPU with the
p256-cm4
feature.
mqtt version 0.1.2
Added
- Added a
p256-cm4
feature passthrough tow5500-tls
.
Changed
- Updated
w5500-tls
from0.1.0
to0.1.2
.
tls version 0.1.1
Fixed
- Fixed a race condition where the client would fail to send finished before the server connection timeout expired.
ll version 0.10.4
Added
- Added a new W5500 type for VDM transfers with an infallible GPIO and an infallible SPI bus.
- Added
defmt::Format
implementations for all register structs. - Added the missing
opmd
field to theDisplay
impl forPhyCfg
.
Fixed
- Fixed the
opmdc
field name in theDisplay
impl forPhyCfg
. This field was incorrectly namedopmd
.
dhcp version 0.4.2
Fixed
- Fixed compilation with the
"defmt"
feature.
sntp version 0.2.0
Added
impl TryFrom<chrono::naive::NaiveDateTime> for Timestamp
.- Added exports for
chrono
andtime
.
Changed
- Changed
Client.server
to public. - Changed the server argument of
Client::new
fromIpv4Addr
toSocketAddrV4
. - Changed the error type of
Timestamp
conversions from()
toTimestampError
. - Moved socket setup from
Client.request
toClient.setup_socket
to avoid repeat initialization.
Removed
- Removed
Client::server
andClient::set_server
methods.