Skip to content

Commit

Permalink
Release embedded-hal 1-alpha changes
Browse files Browse the repository at this point in the history
  • Loading branch information
newAM authored Aug 6, 2023
1 parent 4f480b4 commit 2b23240
Show file tree
Hide file tree
Showing 16 changed files with 48 additions and 33 deletions.
6 changes: 4 additions & 2 deletions dhcp/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,13 @@ 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.5.0] - 2023-08-06
### Added
- Added support for `embedded-hal` version `1.0.0-alpha.11` with the `eh1` feature.

### Changed
- Changed the name of the `embedded-hal` feature to `eh0`.
- Updated `w5500-hl` dependency from `0.9.0` to `0.10.0`.

### Fixed
- Fixed compatibility with dnsmasq by adding a server identifier (option 54) to the REQUEST.
Expand Down Expand Up @@ -68,7 +69,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.4.2...HEAD
[Unreleased]: https://github.com/newAM/w5500-rs/compare/dhcp%2Fv0.5.0...HEAD
[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
[0.4.0]: https://github.com/newAM/w5500-rs/compare/dhcp%2Fv0.3.0...dhcp%2Fv0.4.0
Expand Down
4 changes: 2 additions & 2 deletions dhcp/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "w5500-dhcp"
version = "0.4.2"
version = "0.5.0"
authors = ["Alex Martens <[email protected]>"]
edition = "2021"
repository = "https://github.com/newAM/w5500-rs"
Expand All @@ -19,7 +19,7 @@ ip_in_core = ["w5500-hl/ip_in_core"]
std = ["w5500-hl/std"]

[dependencies]
w5500-hl = { path = "../hl", version = "0.9.0" }
w5500-hl = { path = "../hl", version = "0.10.0" }
defmt = { version = "0.3.4", optional = true }
log = { version = "0.4", optional = true }

Expand Down
6 changes: 4 additions & 2 deletions dns/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,13 @@ 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.3.0] - 2023-08-06
### Added
- Added support for `embedded-hal` version `1.0.0-alpha.11` with the `eh1` feature.

### Changed
- Changed the name of the `embedded-hal` feature to `eh0`.
- Updated `w5500-hl` dependency from `0.9.0` to `0.10.0`.

## [0.2.0] - 2022-05-14
### Added
Expand All @@ -28,7 +29,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.2.0...HEAD
[Unreleased]: https://github.com/newAM/w5500-rs/compare/dns%2Fv0.3.0...HEAD
[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
[0.1.0]: https://github.com/newAM/w5500-rs/releases/tag/dns%2Fv0.1.0
4 changes: 2 additions & 2 deletions dns/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "w5500-dns"
version = "0.2.0"
version = "0.3.0"
authors = ["Alex Martens <[email protected]>"]
edition = "2021"
repository = "https://github.com/newAM/w5500-rs"
Expand All @@ -19,7 +19,7 @@ ip_in_core = ["w5500-hl/ip_in_core"]
std = ["w5500-hl/std"]

[dependencies]
w5500-hl = { path = "../hl", version = "0.9.0" }
w5500-hl = { path = "../hl", version = "0.10.0" }
defmt = { version = "0.3.4", optional = true }
log = { version = "0.4", optional = true }

Expand Down
6 changes: 4 additions & 2 deletions hl/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,14 @@ 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.10.0] - 2023-08-06
### Added
- Added support for `embedded-hal` version `1.0.0-alpha.11` with the `eh1` feature.

### Changed
- Changed the name of the `embedded-hal` feature to `eh0`.
- Changed `Seek<E>::seek` to `Seek::seek<E>`, moving the seek error generic from the `Seek` trait to the `seek` method.
- Updated `w5500-ll` dependency from `0.10.0` to `0.11.0`.

## [0.9.0] - 2022-05-03
### Added
Expand Down Expand Up @@ -109,7 +110,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.9.0...HEAD
[Unreleased]: https://github.com/newAM/w5500-rs/compare/hl%2Fv0.10.0...HEAD
[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
[0.7.1]: https://github.com/newAM/w5500-rs/compare/hl%2Fv0.7.0...hl%2Fv0.7.1
Expand Down
6 changes: 3 additions & 3 deletions hl/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "w5500-hl"
version = "0.9.0"
version = "0.10.0"
authors = ["Alex Martens <[email protected]>"]
edition = "2021"
repository = "https://github.com/newAM/w5500-rs"
Expand All @@ -20,11 +20,11 @@ std = ["w5500-ll/std"]

[dependencies]
defmt = { version = "0.3.4", optional = true }
w5500-ll = { path = "../ll", version = "0.10" }
w5500-ll = { path = "../ll", version = "0.11.0" }

[dev-dependencies]
embedded-hal = "=1.0.0-alpha.11"
w5500-ll = { path = "../ll", version = "0.10", features = ["eh1", "defmt"] }
w5500-ll = { path = "../ll", version = "0.11.0", features = ["eh1", "defmt"] }

[dev-dependencies.ehm]
package = "embedded-hal-mock"
Expand Down
5 changes: 3 additions & 2 deletions ll/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ 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.11.0] - 2023-08-06
### Added
- Added `#[must_use]` to functions in `w5500_ll::net`.
- Added support for `core::net` types with the `ip_in_core` feature.
Expand Down Expand Up @@ -175,7 +175,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.10.4...HEAD
[Unreleased]: https://github.com/newAM/w5500-rs/compare/ll%2Fv0.11.0...HEAD
[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
[0.10.2]: https://github.com/newAM/w5500-rs/compare/ll%2Fv0.10.1...ll%2Fv0.10.2
Expand Down
2 changes: 1 addition & 1 deletion ll/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "w5500-ll"
version = "0.10.4"
version = "0.11.0"
authors = ["Alex Martens <[email protected]>"]
edition = "2021"
repository = "https://github.com/newAM/w5500-rs"
Expand Down
8 changes: 5 additions & 3 deletions mqtt/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,13 @@ 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.2.0] - 2023-08-06
### Added
- Added support for `embedded-hal` version `1.0.0-alpha.11` with the `eh1` feature.

### Changed
- Updated `w5500-tls` from `0.1.2` to `0.1.3`.
- Updated `w5500-hl` dependency from `0.9.0` to `0.10.0`.
- Updated `w5500-tls` dependency from `0.1.2` to `0.2.0`.
- Changed the name of the `embedded-hal` feature to `eh0`.

## [0.1.2] - 2022-08-01
Expand All @@ -26,7 +27,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.1.2...HEAD
[Unreleased]: https://github.com/newAM/w5500-rs/compare/mqtt%2Fv0.2.0...HEAD
[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
[0.1.0]: https://github.com/newAM/w5500-rs/releases/tag/mqtt%2Fv0.1.0
4 changes: 2 additions & 2 deletions mqtt/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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.9.0" }
w5500-tls = { path = "../tls", version = "0.1.3", optional = true }
w5500-hl = { path = "../hl", version = "0.10.0" }
w5500-tls = { path = "../tls", version = "0.2.0", optional = true }

[dev-dependencies]
bytes = "1"
Expand Down
6 changes: 4 additions & 2 deletions regsim/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ 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.1.0-alpha.9] - 2023-08-06
### Added
- Added `#[derive(Debug, PartialEq)]` for `W5500`.
- Added `W5500.set_corpus_file` to record register reads to a file for fuzzing.
Expand All @@ -13,6 +13,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Changed
- Change the `Register::Error` type from `std::io::Error` to `std::io::ErrorKind`.
- Updated `w5500-ll` dependency from `0.10.0` to `0.11.0`.

### Fixed
- Fixed `Sn_RX_RSR` changing value between reading byte 0 and byte 1.
Expand Down Expand Up @@ -75,7 +76,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/regsim%2Fv0.1.0-alpha.8...HEAD
[Unreleased]: https://github.com/newAM/w5500-rs/compare/regsim%2Fv0.1.0-alpha.9...HEAD
[0.1.0-alpha.9]: https://github.com/newAM/w5500-rs/compare/regsim%2Fv0.1.0-alpha.8...regsim%2Fv0.1.0-alpha.9
[0.1.0-alpha.8]: https://github.com/newAM/w5500-rs/compare/regsim%2Fv0.1.0-alpha.7...regsim%2Fv0.1.0-alpha.8
[0.1.0-alpha.7]: https://github.com/newAM/w5500-rs/compare/regsim%2Fv0.1.0-alpha.6...regsim%2Fv0.1.0-alpha.7
[0.1.0-alpha.6]: https://github.com/newAM/w5500-rs/compare/regsim%2Fv0.1.0-alpha.5...regsim%2Fv0.1.0-alpha.6
Expand Down
4 changes: 2 additions & 2 deletions regsim/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "w5500-regsim"
version = "0.1.0-alpha.8"
version = "0.1.0-alpha.9"
authors = ["Alex Martens <[email protected]>"]
edition = "2021"
repository = "https://github.com/newAM/w5500-rs"
Expand All @@ -17,7 +17,7 @@ ip_in_core = ["w5500-ll/ip_in_core"]

[dependencies]
log = "0.4"
w5500-ll = { path = "../ll", version = "0.10", features = ["std"] }
w5500-ll = { path = "../ll", version = "0.11.0", features = ["std"] }

[dev-dependencies]
trust-dns-client = "0.22"
Expand Down
6 changes: 4 additions & 2 deletions sntp/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,14 @@ 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.3.0] - 2023-08-06
### Added
- Added support for `embedded-hal` version `1.0.0-alpha.11` with the `eh1` feature.

### Changed
- Changed the name of the `embedded-hal` feature to `eh0`.
- Removed used of functions deprecated in chrono version `0.4.23`.
- Updated `w5500-hl` dependency from `0.9.0` to `0.10.0`.

## [0.2.0] - 2022-05-21
### Added
Expand All @@ -29,6 +30,7 @@ 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.2.0...HEAD
[Unreleased]: https://github.com/newAM/w5500-rs/compare/sntp%2Fv0.3.0...HEAD
[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
4 changes: 2 additions & 2 deletions sntp/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "w5500-sntp"
version = "0.2.0"
version = "0.3.0"
authors = ["Alex Martens <[email protected]>"]
edition = "2021"
repository = "https://github.com/newAM/w5500-rs"
Expand All @@ -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.9.0" }
w5500-hl = { path = "../hl", version = "0.10.0" }

[dev-dependencies]
log = "0.4"
Expand Down
6 changes: 4 additions & 2 deletions tls/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,13 @@ 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.2.0] - 2023-08-06
### Added
- Added support for `embedded-hal` version `1.0.0-alpha.11` with the `eh1` feature.

### Changed
- Changed the name of the `embedded-hal` feature to `eh0`.
- Updated `w5500-hl` dependency from `0.9.0` to `0.10.0`.

## [0.1.3] - 2022-08-07
### Changed
Expand All @@ -31,7 +32,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.1.3...HEAD
[Unreleased]: https://github.com/newAM/w5500-rs/compare/tls%2Fv0.2.0...HEAD
[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
[0.1.1]: https://github.com/newAM/w5500-rs/compare/tls%2Fv0.1.0...tls%2Fv0.1.1
Expand Down
4 changes: 2 additions & 2 deletions tls/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "w5500-tls"
version = "0.1.3"
version = "0.2.0"
authors = ["Alex Martens <[email protected]>"]
edition = "2021"
repository = "https://github.com/newAM/w5500-rs"
Expand All @@ -19,7 +19,7 @@ ip_in_core = ["w5500-hl/ip_in_core"]
std = ["w5500-hl/std"]

[dependencies]
w5500-hl = { path = "../hl", version = "0.9.0" }
w5500-hl = { path = "../hl", version = "0.10.0" }

cfg-if = "1"
heapless = { version = "0.7", default-features = false }
Expand Down

0 comments on commit 2b23240

Please sign in to comment.