Skip to content

Commit

Permalink
embedded-hal: 1.0.0-alpha.10 -> 1.0.0-alpha.11
Browse files Browse the repository at this point in the history
  • Loading branch information
newAM committed Jul 6, 2023
1 parent 3cb6a20 commit e02090e
Show file tree
Hide file tree
Showing 10 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion dhcp/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]
### Added
- Added support for `embedded-hal` version `1.0.0-alpha.10` with the `eh1` feature.
- 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`.
Expand Down
2 changes: 1 addition & 1 deletion dns/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]
### Added
- Added support for `embedded-hal` version `1.0.0-alpha.10` with the `eh1` feature.
- 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`.
Expand Down
2 changes: 1 addition & 1 deletion hl/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]
### Added
- Added support for `embedded-hal` version `1.0.0-alpha.10` with the `eh1` feature.
- 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`.
Expand Down
4 changes: 2 additions & 2 deletions hl/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ defmt = { version = "0.3.4", optional = true }
w5500-ll = { path = "../ll", version = "0.10" }

[dev-dependencies]
embedded-hal-mock = { git = "https://github.com/dbrgn/embedded-hal-mock", branch = "1-alpha" }
embedded-hal = "=1.0.0-alpha.10"
embedded-hal-mock = { git = "https://github.com/rursprung/embedded-hal-mock", branch = "embedded-hal-1.0.0-alpha.11" }
embedded-hal = "=1.0.0-alpha.11"
w5500-ll = { path = "../ll", version = "0.10", features = ["eh1", "defmt"] }

[package.metadata.docs.rs]
Expand Down
2 changes: 1 addition & 1 deletion ll/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Added
- Added `#[must_use]` to functions in `w5500_ll::net`.
- Added support for `core::net` types with the `ip_in_core` feature.
- Added support for `embedded-hal` version `1.0.0-alpha.10` with the `eh1` feature.
- Added support for `embedded-hal` version `1.0.0-alpha.11` with the `eh1` feature.
- Added support for `embedded-hal-async` version `0.2.0-alpha.0` with the `eha0a` feature.
- Added an `aio` module with async traits.
- Added `sn_tx_ptrs` and `sn_rx_ptrs` to read socket buffer pointers in a single transaction.
Expand Down
8 changes: 4 additions & 4 deletions ll/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,17 +22,17 @@ std = []
[dependencies]
defmt = { version = "0.3.4", optional = true }
eh0 = { package = "embedded-hal", version = "0.2.7", optional = true }
eh1 = { package = "embedded-hal", version = "=1.0.0-alpha.10", optional = true }
eha0a = { package = "embedded-hal-async", version = "=0.2.0-alpha.1", optional = true }
eh1 = { package = "embedded-hal", version = "=1.0.0-alpha.11", optional = true }
eha0a = { package = "embedded-hal-async", version = "=0.2.0-alpha.2", optional = true }

[dev-dependencies]
ehm0 = { package = "embedded-hal-mock", version = "0.8" }
tokio = { version = "1.21.2", features = ["rt", "macros"] }

[dev-dependencies.ehm1]
package = "embedded-hal-mock"
git = "https://github.com/dbrgn/embedded-hal-mock"
branch = "1-alpha"
git = "https://github.com/rursprung/embedded-hal-mock"
branch = "embedded-hal-1.0.0-alpha.11"
features = ["embedded-hal-async"]

[package.metadata.docs.rs]
Expand Down
2 changes: 1 addition & 1 deletion mqtt/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]
### Added
- Added support for `embedded-hal` version `1.0.0-alpha.10` with the `eh1` feature.
- 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`.
Expand Down
2 changes: 1 addition & 1 deletion sntp/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]
### Added
- Added support for `embedded-hal` version `1.0.0-alpha.10` with the `eh1` feature.
- 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`.
Expand Down
2 changes: 1 addition & 1 deletion testsuite/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ publish = false
edition = "2021"

[dependencies]
ftdi-embedded-hal = { version = "0.15.0", features = ["libftd2xx", "libftd2xx-static"] }
ftdi-embedded-hal = { version = "0.16.0", features = ["libftd2xx", "libftd2xx-static"] }
log = "0.4"
rand_core = { version = "0.6.3", features = ["getrandom"] }
stderrlog = "0.5"
Expand Down
2 changes: 1 addition & 1 deletion tls/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]
### Added
- Added support for `embedded-hal` version `1.0.0-alpha.10` with the `eh1` feature.
- 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`.
Expand Down

0 comments on commit e02090e

Please sign in to comment.