Skip to content

Commit

Permalink
Merge pull request #96 from Dirbaio/release
Browse files Browse the repository at this point in the history
Release nal v0.8, nal-async v0.7
  • Loading branch information
ryan-summers authored Nov 10, 2023
2 parents 71fa123 + 831e8b1 commit e39a13d
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 5 deletions.
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.

## [Unreleased]

No unreleased changes yet

## [0.8.0] - 2023-11-10

- Bump MSRV to 1.60.0 (required for Edition 2021)
- Switch to Edition 2021
- [breaking] `Dns::get_host_by_address` now uses `&mut [u8]` instead of `heapless::String`.
Expand Down Expand Up @@ -78,7 +82,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.

Initial release to crates.io.

[Unreleased]: https://github.com/rust-embedded-community/embedded-nal/compare/v0.7.0...HEAD
[Unreleased]: https://github.com/rust-embedded-community/embedded-nal/compare/v0.8.0...HEAD
[0.8.0]: https://github.com/rust-embedded-community/embedded-nal/compare/v0.7.0...v0.8.0
[0.7.0]: https://github.com/rust-embedded-community/embedded-nal/compare/v0.6.0...v0.7.0
[0.6.0]: https://github.com/rust-embedded-community/embedded-nal/compare/v0.5.0...v0.6.0
[0.5.0]: https://github.com/rust-embedded-community/embedded-nal/compare/v0.4.0...v0.5.0
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "embedded-nal"
version = "0.7.0"
version = "0.8.0"
authors = [
"Jonathan 'theJPster' Pallant <github@thejpster.org.uk>",
"Mathias Koch <mk@blackbird.online>",
Expand Down
8 changes: 7 additions & 1 deletion embedded-nal-async/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,13 @@ and this project adheres to [Semantic Versioning](http://semver.org/).

## [Unreleased]

No unreleased changes yet.

## [0.7.0] - 2023-11-10

- [breaking] `Dns::get_host_by_address` now uses `&mut [u8]` instead of `heapless::String`.
- [breaking] Remove unneeded `where Self: 'a` bound in `TcpClient::connect`.
- Bumped to `embedded-nal` 0.8

## [0.6.0] - 2023-10-03

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

Initial release to crates.io.

[Unreleased]: https://github.com/rust-embedded-community/embedded-nal/compare/embedded-nal-async-v0.6.0...HEAD
[Unreleased]: https://github.com/rust-embedded-community/embedded-nal/compare/embedded-nal-async-v0.7.0...HEAD
[0.7.0]: https://github.com/rust-embedded-community/embedded-nal/compare/embedded-nal-async-v0.6.0...embedded-nal-async-v0.7.0
[0.6.0]: https://github.com/rust-embedded-community/embedded-nal/compare/embedded-nal-async-v0.5.0...embedded-nal-async-v0.6.0
[0.5.0]: https://github.com/rust-embedded-community/embedded-nal/compare/embedded-nal-async-v0.4.0...embedded-nal-async-v0.5.0
[0.4.0]: https://github.com/rust-embedded-community/embedded-nal/compare/embedded-nal-async-v0.3.0...embedded-nal-async-v0.4.0
Expand Down
4 changes: 2 additions & 2 deletions embedded-nal-async/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "embedded-nal-async"
version = "0.6.0"
version = "0.7.0"
edition = "2021"
description = "An Async Network Abstraction Layer (NAL) for Embedded Systems"
license = "MIT OR Apache-2.0"
Expand All @@ -16,5 +16,5 @@ ip_in_core = []

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

0 comments on commit e39a13d

Please sign in to comment.