diff --git a/dhcp/CHANGELOG.md b/dhcp/CHANGELOG.md index 2b84630b..719be1a7 100644 --- a/dhcp/CHANGELOG.md +++ b/dhcp/CHANGELOG.md @@ -4,7 +4,11 @@ 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.6.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`. + ### Fixed - Fixed server identifier in REQUEST message. @@ -73,7 +77,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [0.1.0] - 2021-12-24 - Initial release -[Unreleased]: https://github.com/newAM/w5500-rs/compare/dhcp%2Fv0.5.0...HEAD +[Unreleased]: https://github.com/newAM/w5500-rs/compare/dhcp%2Fv0.6.0...HEAD +[0.6.0]: https://github.com/newAM/w5500-rs/compare/dhcp%2Fv0.5.0...dhcp%2Fv0.6.0 [0.5.0]: https://github.com/newAM/w5500-rs/compare/dhcp%2Fv0.4.2...dhcp%2Fv0.5.0 [0.4.2]: https://github.com/newAM/w5500-rs/compare/dhcp%2Fv0.4.1...dhcp%2Fv0.4.2 [0.4.1]: https://github.com/newAM/w5500-rs/compare/dhcp%2Fv0.4.0...dhcp%2Fv0.4.1 diff --git a/dhcp/Cargo.toml b/dhcp/Cargo.toml index 8fc5de52..4df6f668 100644 --- a/dhcp/Cargo.toml +++ b/dhcp/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "w5500-dhcp" -version = "0.5.0" +version = "0.6.0" authors = ["Alex Martens "] edition = "2021" repository = "https://github.com/newAM/w5500-rs" @@ -19,7 +19,7 @@ ip_in_core = ["w5500-hl/ip_in_core"] std = ["w5500-hl/std"] [dependencies] -w5500-hl = { path = "../hl", version = "0.10.0" } +w5500-hl = { path = "../hl", version = "0.11.0" } defmt = { version = "0.3.4", optional = true } log = { version = "0.4", optional = true } diff --git a/dns/CHANGELOG.md b/dns/CHANGELOG.md index 73e893c7..b5327430 100644 --- a/dns/CHANGELOG.md +++ b/dns/CHANGELOG.md @@ -4,6 +4,11 @@ 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). +## [0.4.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`. + ## [0.3.0] - 2023-08-06 ### Added - Added support for `embedded-hal` version `1.0.0-alpha.11` with the `eh1` feature. @@ -29,7 +34,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [0.1.0] - 2022-05-04 - Initial release -[Unreleased]: https://github.com/newAM/w5500-rs/compare/dns%2Fv0.3.0...HEAD +[Unreleased]: https://github.com/newAM/w5500-rs/compare/dns%2Fv0.4.0...HEAD +[0.4.0]: https://github.com/newAM/w5500-rs/compare/dns%2Fv0.3.0...dns%2Fv0.4.0 [0.3.0]: https://github.com/newAM/w5500-rs/compare/dns%2Fv0.2.0...dns%2Fv0.3.0 [0.2.0]: https://github.com/newAM/w5500-rs/compare/dns%2Fv0.1.1...dns%2Fv0.2.0 [0.1.1]: https://github.com/newAM/w5500-rs/compare/dns%2Fv0.1.0...dns%2Fv0.1.1 diff --git a/dns/Cargo.toml b/dns/Cargo.toml index f03ff74a..021f7ff0 100644 --- a/dns/Cargo.toml +++ b/dns/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "w5500-dns" -version = "0.3.0" +version = "0.4.0" authors = ["Alex Martens "] edition = "2021" repository = "https://github.com/newAM/w5500-rs" @@ -19,7 +19,7 @@ ip_in_core = ["w5500-hl/ip_in_core"] std = ["w5500-hl/std"] [dependencies] -w5500-hl = { path = "../hl", version = "0.10.0" } +w5500-hl = { path = "../hl", version = "0.11.0" } defmt = { version = "0.3.4", optional = true } log = { version = "0.4", optional = true } diff --git a/hl/CHANGELOG.md b/hl/CHANGELOG.md index c00e0d8c..f09ae881 100644 --- a/hl/CHANGELOG.md +++ b/hl/CHANGELOG.md @@ -4,6 +4,11 @@ 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). +# [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`. + ## [0.10.0] - 2023-08-06 ### Added - Added support for `embedded-hal` version `1.0.0-alpha.11` with the `eh1` feature. @@ -110,7 +115,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.10.0...HEAD +[Unreleased]: https://github.com/newAM/w5500-rs/compare/hl%2Fv0.11.0...HEAD +[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 [0.8.0]: https://github.com/newAM/w5500-rs/compare/hl%2Fv0.7.1...hl%2Fv0.8.0 diff --git a/hl/Cargo.toml b/hl/Cargo.toml index 411adc1e..71774641 100644 --- a/hl/Cargo.toml +++ b/hl/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "w5500-hl" -version = "0.10.0" +version = "0.11.0" authors = ["Alex Martens "] edition = "2021" repository = "https://github.com/newAM/w5500-rs" @@ -20,11 +20,11 @@ std = ["w5500-ll/std"] [dependencies] defmt = { version = "0.3.4", optional = true } -w5500-ll = { path = "../ll", version = "0.11.0" } +w5500-ll = { path = "../ll", version = "0.12.0" } [dev-dependencies] embedded-hal = "=1.0.0-rc.1" -w5500-ll = { path = "../ll", version = "0.11.0", features = ["eh1", "defmt"] } +w5500-ll = { path = "../ll", version = "0.12.0", features = ["eh1", "defmt"] } [dev-dependencies.ehm] package = "embedded-hal-mock" diff --git a/ll/CHANGELOG.md b/ll/CHANGELOG.md index 9e7e0499..a5b86b8b 100644 --- a/ll/CHANGELOG.md +++ b/ll/CHANGELOG.md @@ -4,10 +4,10 @@ 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] - 2023-10-02 ### Changed -- Updated the `embedded-hal` from `1.0.0-alpha.11` to `1.0.0-rc.1`. -- Updated the `embedded-hal-async` from `0.2.0-alpha.2` to `1.0.0-rc.1`. +- 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`. ## [0.11.0] - 2023-08-06 ### Added @@ -180,7 +180,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [0.1.0] - 2021-01-02 - Initial release -[Unreleased]: https://github.com/newAM/w5500-rs/compare/ll%2Fv0.11.0...HEAD +[Unreleased]: https://github.com/newAM/w5500-rs/compare/ll%2Fv0.12.0...HEAD +[0.12.0]: https://github.com/newAM/w5500-rs/compare/ll%2Fv0.11.0...ll%2Fv0.12.0 [0.11.0]: https://github.com/newAM/w5500-rs/compare/ll%2Fv0.10.4...ll%2Fv0.11.0 [0.10.4]: https://github.com/newAM/w5500-rs/compare/ll%2Fv0.10.3...ll%2Fv0.10.4 [0.10.3]: https://github.com/newAM/w5500-rs/compare/ll%2Fv0.10.2...ll%2Fv0.10.3 diff --git a/ll/Cargo.toml b/ll/Cargo.toml index 661fd64d..0893e63e 100644 --- a/ll/Cargo.toml +++ b/ll/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "w5500-ll" -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 c7f11380..772afef9 100644 --- a/mqtt/CHANGELOG.md +++ b/mqtt/CHANGELOG.md @@ -4,6 +4,11 @@ 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). +## [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`. + ## [0.2.0] - 2023-08-06 ### Added - Added support for `embedded-hal` version `1.0.0-alpha.11` with the `eh1` feature. @@ -27,7 +32,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [0.1.0] - 2022-05-04 - Initial release -[Unreleased]: https://github.com/newAM/w5500-rs/compare/mqtt%2Fv0.2.0...HEAD +[Unreleased]: https://github.com/newAM/w5500-rs/compare/mqtt%2Fv0.3.0...HEAD +[0.3.0]: https://github.com/newAM/w5500-rs/compare/mqtt%2Fv0.2.0...mqtt%2Fv0.3.0 [0.2.0]: https://github.com/newAM/w5500-rs/compare/mqtt%2Fv0.1.2...mqtt%2Fv0.2.0 [0.1.2]: https://github.com/newAM/w5500-rs/compare/mqtt%2Fv0.1.1...mqtt%2Fv0.1.2 [0.1.1]: https://github.com/newAM/w5500-rs/compare/mqtt%2Fv0.1.0...mqtt%2Fv0.1.1 diff --git a/mqtt/Cargo.toml b/mqtt/Cargo.toml index 6be43923..e19d1c4f 100644 --- a/mqtt/Cargo.toml +++ b/mqtt/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "w5500-mqtt" -version = "0.2.0" +version = "0.3.0" authors = ["Alex Martens "] edition = "2021" repository = "https://github.com/newAM/w5500-rs" @@ -24,8 +24,8 @@ w5500-tls = ["dep:w5500-tls"] [dependencies] defmt = { version = "0.3.4", optional = true } log = { version = "0.4", optional = true } -w5500-hl = { path = "../hl", version = "0.10.0" } -w5500-tls = { path = "../tls", version = "0.2.0", optional = true } +w5500-hl = { path = "../hl", version = "0.11.0" } +w5500-tls = { path = "../tls", version = "0.3.0", optional = true } [dev-dependencies] bytes = "1" diff --git a/regsim/Cargo.toml b/regsim/Cargo.toml index 8634c7be..9b3080cd 100644 --- a/regsim/Cargo.toml +++ b/regsim/Cargo.toml @@ -17,7 +17,7 @@ ip_in_core = ["w5500-ll/ip_in_core"] [dependencies] log = "0.4" -w5500-ll = { path = "../ll", version = "0.11.0", features = ["std"] } +w5500-ll = { path = "../ll", version = "0.12.0", features = ["std"] } [dev-dependencies] trust-dns-client = "0.23" diff --git a/sntp/CHANGELOG.md b/sntp/CHANGELOG.md index 3ec2c7f1..b4cbfa71 100644 --- a/sntp/CHANGELOG.md +++ b/sntp/CHANGELOG.md @@ -4,6 +4,11 @@ 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). +## [0.4.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`. + ## [0.3.0] - 2023-08-06 ### Added - Added support for `embedded-hal` version `1.0.0-alpha.11` with the `eh1` feature. @@ -30,7 +35,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [0.1.0] - 2022-05-03 - Initial release -[Unreleased]: https://github.com/newAM/w5500-rs/compare/sntp%2Fv0.3.0...HEAD +[Unreleased]: https://github.com/newAM/w5500-rs/compare/sntp%2Fv0.4.0...HEAD +[0.4.0]: https://github.com/newAM/w5500-rs/compare/sntp%2Fv0.3.0...sntp%2Fv0.4.0 [0.3.0]: https://github.com/newAM/w5500-rs/compare/sntp%2Fv0.2.0...sntp%2Fv0.3.0 [0.2.0]: https://github.com/newAM/w5500-rs/compare/sntp%2Fv0.1.0...sntp%2Fv0.2.0 [0.1.0]: https://github.com/newAM/w5500-rs/releases/tag/sntp%2Fv0.1.0 diff --git a/sntp/Cargo.toml b/sntp/Cargo.toml index 557f83b8..35ba4200 100644 --- a/sntp/Cargo.toml +++ b/sntp/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "w5500-sntp" -version = "0.3.0" +version = "0.4.0" authors = ["Alex Martens "] edition = "2021" repository = "https://github.com/newAM/w5500-rs" @@ -27,7 +27,7 @@ defmt = { version = "0.3.4", default-features = false, 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.10.0" } +w5500-hl = { path = "../hl", version = "0.11.0" } [dev-dependencies] log = "0.4" diff --git a/tls/CHANGELOG.md b/tls/CHANGELOG.md index 18e6580e..eb0f1a19 100644 --- a/tls/CHANGELOG.md +++ b/tls/CHANGELOG.md @@ -4,6 +4,11 @@ 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). +## [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`. + ## [0.2.0] - 2023-08-06 ### Added - Added support for `embedded-hal` version `1.0.0-alpha.11` with the `eh1` feature. @@ -32,7 +37,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [0.1.0-alpha.1] - 2022-05-04 - Initial release -[Unreleased]: https://github.com/newAM/w5500-rs/compare/tls%2Fv0.2.0...HEAD +[Unreleased]: https://github.com/newAM/w5500-rs/compare/tls%2Fv0.3.0...HEAD +[0.3.0]: https://github.com/newAM/w5500-rs/compare/tls%2Fv0.2.0...tls%2Fv0.3.0 [0.2.0]: https://github.com/newAM/w5500-rs/compare/tls%2Fv0.1.3...tls%2Fv0.2.0 [0.1.3]: https://github.com/newAM/w5500-rs/compare/tls%2Fv0.1.2...tls%2Fv0.1.3 [0.1.2]: https://github.com/newAM/w5500-rs/compare/tls%2Fv0.1.1...tls%2Fv0.1.2 diff --git a/tls/Cargo.toml b/tls/Cargo.toml index 12f56c24..0e1388f7 100644 --- a/tls/Cargo.toml +++ b/tls/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "w5500-tls" -version = "0.2.0" +version = "0.3.0" authors = ["Alex Martens "] edition = "2021" repository = "https://github.com/newAM/w5500-rs" @@ -19,7 +19,7 @@ ip_in_core = ["w5500-hl/ip_in_core"] std = ["w5500-hl/std"] [dependencies] -w5500-hl = { path = "../hl", version = "0.10.0" } +w5500-hl = { path = "../hl", version = "0.11.0" } cfg-if = "1" heapless = { version = "0.7", default-features = false }