Skip to content

Commit

Permalink
hl: 0.11.0 -> 0.12.0
Browse files Browse the repository at this point in the history
  • Loading branch information
newAM committed Jun 9, 2024
1 parent fc035e3 commit 5187997
Show file tree
Hide file tree
Showing 12 changed files with 30 additions and 9 deletions.
4 changes: 4 additions & 0 deletions dhcp/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,17 @@ 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`.

## [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`.
- Updated `w5500-hl` dependency from `0.10.0` to `0.11.0`.

### Fixed
- Fixed server identifier in REQUEST message.
Expand Down
2 changes: 1 addition & 1 deletion dhcp/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }

Expand Down
4 changes: 4 additions & 0 deletions dns/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,17 @@ 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`.

## [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`.
- Updated `w5500-hl` dependency from `0.10.0` to `0.11.0`.

## [0.3.0] - 2023-08-06
### Added
Expand Down
2 changes: 1 addition & 1 deletion dns/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }

Expand Down
11 changes: 8 additions & 3 deletions hl/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion hl/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "w5500-hl"
version = "0.11.0"
version = "0.12.0"
authors = ["Alex Martens <[email protected]>"]
edition = "2021"
repository = "https://github.com/newAM/w5500-rs"
Expand Down
4 changes: 4 additions & 0 deletions mqtt/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,17 @@ 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`.

## [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
Expand Down
2 changes: 1 addition & 1 deletion mqtt/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down
2 changes: 2 additions & 0 deletions sntp/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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`.
Expand All @@ -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
Expand Down
2 changes: 1 addition & 1 deletion sntp/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 2 additions & 0 deletions tls/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion tls/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }
Expand Down

0 comments on commit 5187997

Please sign in to comment.