Skip to content

Commit e39a13d

Browse files
authored
Merge pull request #96 from Dirbaio/release
Release nal v0.8, nal-async v0.7
2 parents 71fa123 + 831e8b1 commit e39a13d

File tree

4 files changed

+16
-5
lines changed

4 files changed

+16
-5
lines changed

CHANGELOG.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
77

88
## [Unreleased]
99

10+
No unreleased changes yet
11+
12+
## [0.8.0] - 2023-11-10
13+
1014
- Bump MSRV to 1.60.0 (required for Edition 2021)
1115
- Switch to Edition 2021
1216
- [breaking] `Dns::get_host_by_address` now uses `&mut [u8]` instead of `heapless::String`.
@@ -78,7 +82,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
7882

7983
Initial release to crates.io.
8084

81-
[Unreleased]: https://github.com/rust-embedded-community/embedded-nal/compare/v0.7.0...HEAD
85+
[Unreleased]: https://github.com/rust-embedded-community/embedded-nal/compare/v0.8.0...HEAD
86+
[0.8.0]: https://github.com/rust-embedded-community/embedded-nal/compare/v0.7.0...v0.8.0
8287
[0.7.0]: https://github.com/rust-embedded-community/embedded-nal/compare/v0.6.0...v0.7.0
8388
[0.6.0]: https://github.com/rust-embedded-community/embedded-nal/compare/v0.5.0...v0.6.0
8489
[0.5.0]: https://github.com/rust-embedded-community/embedded-nal/compare/v0.4.0...v0.5.0

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "embedded-nal"
3-
version = "0.7.0"
3+
version = "0.8.0"
44
authors = [
55
"Jonathan 'theJPster' Pallant <github@thejpster.org.uk>",
66
"Mathias Koch <mk@blackbird.online>",

embedded-nal-async/CHANGELOG.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,13 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
77

88
## [Unreleased]
99

10+
No unreleased changes yet.
11+
12+
## [0.7.0] - 2023-11-10
13+
1014
- [breaking] `Dns::get_host_by_address` now uses `&mut [u8]` instead of `heapless::String`.
1115
- [breaking] Remove unneeded `where Self: 'a` bound in `TcpClient::connect`.
16+
- Bumped to `embedded-nal` 0.8
1217

1318
## [0.6.0] - 2023-10-03
1419

@@ -38,7 +43,8 @@ Remove TcpClientStack, TcpFullStack and UDP traits pending traits that support s
3843

3944
Initial release to crates.io.
4045

41-
[Unreleased]: https://github.com/rust-embedded-community/embedded-nal/compare/embedded-nal-async-v0.6.0...HEAD
46+
[Unreleased]: https://github.com/rust-embedded-community/embedded-nal/compare/embedded-nal-async-v0.7.0...HEAD
47+
[0.7.0]: https://github.com/rust-embedded-community/embedded-nal/compare/embedded-nal-async-v0.6.0...embedded-nal-async-v0.7.0
4248
[0.6.0]: https://github.com/rust-embedded-community/embedded-nal/compare/embedded-nal-async-v0.5.0...embedded-nal-async-v0.6.0
4349
[0.5.0]: https://github.com/rust-embedded-community/embedded-nal/compare/embedded-nal-async-v0.4.0...embedded-nal-async-v0.5.0
4450
[0.4.0]: https://github.com/rust-embedded-community/embedded-nal/compare/embedded-nal-async-v0.3.0...embedded-nal-async-v0.4.0

embedded-nal-async/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "embedded-nal-async"
3-
version = "0.6.0"
3+
version = "0.7.0"
44
edition = "2021"
55
description = "An Async Network Abstraction Layer (NAL) for Embedded Systems"
66
license = "MIT OR Apache-2.0"
@@ -16,5 +16,5 @@ ip_in_core = []
1616

1717
[dependencies]
1818
no-std-net = "0.6"
19-
embedded-nal = { version = "0.7.0", path = "../" }
19+
embedded-nal = { version = "0.8.0", path = "../" }
2020
embedded-io-async = { version = "0.6.0" }

0 commit comments

Comments
 (0)