diff --git a/dhcp/CHANGELOG.md b/dhcp/CHANGELOG.md index 4447a6a..a2420de 100644 --- a/dhcp/CHANGELOG.md +++ b/dhcp/CHANGELOG.md @@ -5,6 +5,9 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). ## [Unreleased] +### Changed +- Updated `w5500-hl` dependency from `0.11.0` to `0.12.0`. + ### Removed - Removed the `ip_in_core` and `std` features. `Ipv4Addr` and `SocketAddrV4` are now provided by `core::net`. @@ -12,6 +15,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Changed - Updated `embedded-hal` from `1.0.0-alpha.11` to `1.0.0-rc.1`. - Updated `embedded-hal-async` from `0.2.0-alpha.2` to `1.0.0-rc.1`. +- Updated `w5500-hl` dependency from `0.10.0` to `0.11.0`. ### Fixed - Fixed server identifier in REQUEST message. diff --git a/dhcp/Cargo.toml b/dhcp/Cargo.toml index df58375..7769d0f 100644 --- a/dhcp/Cargo.toml +++ b/dhcp/Cargo.toml @@ -17,7 +17,7 @@ eh0 = ["w5500-hl/eh0"] eh1 = ["w5500-hl/eh1"] [dependencies] -w5500-hl = { path = "../hl", version = "0.11.0" } +w5500-hl = { path = "../hl", version = "0.12.0" } defmt = { version = "0.3.8", features = ["ip_in_core"], optional = true } log = { version = "0.4", optional = true } diff --git a/dns/CHANGELOG.md b/dns/CHANGELOG.md index 1051d4b..4154017 100644 --- a/dns/CHANGELOG.md +++ b/dns/CHANGELOG.md @@ -5,6 +5,9 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). ## [Unreleased] +### Changed +- Updated `w5500-hl` dependency from `0.11.0` to `0.12.0`. + ### Removed - Removed the `ip_in_core` and `std` features. `Ipv4Addr` and `SocketAddrV4` are now provided by `core::net`. @@ -12,6 +15,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Changed - Updated `embedded-hal` from `1.0.0-alpha.11` to `1.0.0-rc.1`. - Updated `embedded-hal-async` from `0.2.0-alpha.2` to `1.0.0-rc.1`. +- Updated `w5500-hl` dependency from `0.10.0` to `0.11.0`. ## [0.3.0] - 2023-08-06 ### Added diff --git a/dns/Cargo.toml b/dns/Cargo.toml index 680fc17..162cce6 100644 --- a/dns/Cargo.toml +++ b/dns/Cargo.toml @@ -17,7 +17,7 @@ eh0 = ["w5500-hl/eh0"] eh1 = ["w5500-hl/eh1"] [dependencies] -w5500-hl = { path = "../hl", version = "0.11.0" } +w5500-hl = { path = "../hl", version = "0.12.0" } defmt = { version = "0.3.8", features = ["ip_in_core"], optional = true } log = { version = "0.4", optional = true } diff --git a/hl/CHANGELOG.md b/hl/CHANGELOG.md index f20335a..2058cd4 100644 --- a/hl/CHANGELOG.md +++ b/hl/CHANGELOG.md @@ -4,14 +4,18 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). -## [Unreleased] +## [0.12.0] - 2024-06-09 +### Changed +- Updated `w5500-ll` dependency from `0.12.0` to `0.13.0`. + ### Removed - Removed the `ip_in_core` and `std` features. `Ipv4Addr` and `SocketAddrV4` are now provided by `core::net`. -# [0.11.0] - 2023-10-02 +## [0.11.0] - 2023-10-02 ### Changed - Updated `embedded-hal` from `1.0.0-alpha.11` to `1.0.0-rc.1`. - Updated `embedded-hal-async` from `0.2.0-alpha.2` to `1.0.0-rc.1`. +- Updated `w5500-ll` dependency from `0.11.0` to `0.12.0`. ## [0.10.0] - 2023-08-06 ### Added @@ -119,7 +123,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [0.1.0-alpha.1] - 2021-01-31 - Initial release -[Unreleased]: https://github.com/newAM/w5500-rs/compare/hl%2Fv0.11.0...HEAD +[Unreleased]: https://github.com/newAM/w5500-rs/compare/hl%2Fv0.12.0...HEAD +[0.12.0]: https://github.com/newAM/w5500-rs/compare/hl%2Fv0.11.0...hl%2Fv0.12.0 [0.11.0]: https://github.com/newAM/w5500-rs/compare/hl%2Fv0.10.0...hl%2Fv0.11.0 [0.10.0]: https://github.com/newAM/w5500-rs/compare/hl%2Fv0.9.0...hl%2Fv0.10.0 [0.9.0]: https://github.com/newAM/w5500-rs/compare/hl%2Fv0.8.0...hl%2Fv0.9.0 diff --git a/hl/Cargo.toml b/hl/Cargo.toml index caf28e1..452cbf3 100644 --- a/hl/Cargo.toml +++ b/hl/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "w5500-hl" -version = "0.11.0" +version = "0.12.0" authors = ["Alex Martens "] edition = "2021" repository = "https://github.com/newAM/w5500-rs" diff --git a/mqtt/CHANGELOG.md b/mqtt/CHANGELOG.md index fb9a326..0910f74 100644 --- a/mqtt/CHANGELOG.md +++ b/mqtt/CHANGELOG.md @@ -5,6 +5,9 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). ## [Unreleased] +### Changed +- Updated `w5500-hl` dependency from `0.11.0` to `0.12.0`. + ### Removed - Removed the `ip_in_core` and `std` features. `Ipv4Addr` and `SocketAddrV4` are now provided by `core::net`. @@ -12,6 +15,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Changed - Updated `embedded-hal` from `1.0.0-alpha.11` to `1.0.0-rc.1`. - Updated `embedded-hal-async` from `0.2.0-alpha.2` to `1.0.0-rc.1`. +- Updated `w5500-hl` dependency from `0.10.0` to `0.11.0`. ## [0.2.0] - 2023-08-06 ### Added diff --git a/mqtt/Cargo.toml b/mqtt/Cargo.toml index fa0783d..f11bad9 100644 --- a/mqtt/Cargo.toml +++ b/mqtt/Cargo.toml @@ -22,7 +22,7 @@ w5500-tls = ["dep:w5500-tls"] [dependencies] defmt = { version = "0.3.8", features = ["ip_in_core"], optional = true } log = { version = "0.4", optional = true } -w5500-hl = { path = "../hl", version = "0.11.0" } +w5500-hl = { path = "../hl", version = "0.12.0" } w5500-tls = { path = "../tls", version = "0.3.0", optional = true } [dev-dependencies] diff --git a/sntp/CHANGELOG.md b/sntp/CHANGELOG.md index b6a39eb..e05da8d 100644 --- a/sntp/CHANGELOG.md +++ b/sntp/CHANGELOG.md @@ -7,6 +7,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] ### Changed - Bumped the minimum `chrono` version from `0.4` to `0.4.32`. +- Updated `w5500-hl` dependency from `0.11.0` to `0.12.0`. ### Removed - Removed the `ip_in_core` and `std` features. `Ipv4Addr` and `SocketAddrV4` are now provided by `core::net`. @@ -15,6 +16,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Changed - Updated `embedded-hal` from `1.0.0-alpha.11` to `1.0.0-rc.1`. - Updated `embedded-hal-async` from `0.2.0-alpha.2` to `1.0.0-rc.1`. +- Updated `w5500-hl` dependency from `0.10.0` to `0.11.0`. ## [0.3.0] - 2023-08-06 ### Added diff --git a/sntp/Cargo.toml b/sntp/Cargo.toml index 1be3830..e0084ca 100644 --- a/sntp/Cargo.toml +++ b/sntp/Cargo.toml @@ -25,7 +25,7 @@ defmt = { version = "0.3.8", features = ["ip_in_core"], optional = true } log = { version = "0.4", default-features = false, optional = true } num-rational = { version = "0.4", default-features = false, optional = true } time = { version = "0.3", default-features = false, optional = true } -w5500-hl = { path = "../hl", version = "0.11.0" } +w5500-hl = { path = "../hl", version = "0.12.0" } [dev-dependencies] log = "0.4" diff --git a/tls/CHANGELOG.md b/tls/CHANGELOG.md index 75e70e7..2d6758d 100644 --- a/tls/CHANGELOG.md +++ b/tls/CHANGELOG.md @@ -7,11 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] ### Removed - Removed the `ip_in_core` and `std` features. `Ipv4Addr` and `SocketAddrV4` are now provided by `core::net`. +- Updated `w5500-hl` dependency from `0.11.0` to `0.12.0`. ## [0.3.0] - 2023-10-02 ### Changed - Updated `embedded-hal` from `1.0.0-alpha.11` to `1.0.0-rc.1`. - Updated `embedded-hal-async` from `0.2.0-alpha.2` to `1.0.0-rc.1`. +- Updated `w5500-hl` dependency from `0.10.0` to `0.11.0`. ## [0.2.0] - 2023-08-06 ### Added diff --git a/tls/Cargo.toml b/tls/Cargo.toml index 7948937..f63ef16 100644 --- a/tls/Cargo.toml +++ b/tls/Cargo.toml @@ -17,7 +17,7 @@ eh0 = ["w5500-hl/eh0"] eh1 = ["w5500-hl/eh1"] [dependencies] -w5500-hl = { path = "../hl", version = "0.11.0" } +w5500-hl = { path = "../hl", version = "0.12.0" } cfg-if = "1" heapless = { version = "0.8", default-features = false }