Skip to content

Commit bec2c3c

Browse files
authored
Merge pull request #57 from rust-embedded-community/release/prepare-0.6.0
Preparing v0.6.0 release
2 parents f603589 + 5441e6c commit bec2c3c

File tree

3 files changed

+8
-3
lines changed

3 files changed

+8
-3
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+
* None
11+
12+
## [0.6.0] - 2021-05-25
13+
1014
- Changed self references in dns stack methods to mutable, to follow the network stack implementations.
1115

1216
## [0.5.0] - 2021-05-20
@@ -58,7 +62,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
5862

5963
Initial release to crates.io.
6064

61-
[Unreleased]: https://github.com/rust-embedded-community/embedded-nal/compare/v0.5.0...HEAD
65+
[Unreleased]: https://github.com/rust-embedded-community/embedded-nal/compare/v0.6.0...HEAD
66+
[0.6.0]: https://github.com/rust-embedded-community/embedded-nal/compare/v0.5.0...v0.6.0
6267
[0.5.0]: https://github.com/rust-embedded-community/embedded-nal/compare/v0.4.0...v0.5.0
6368
[0.4.0]: https://github.com/rust-embedded-community/embedded-nal/compare/v0.3.0...v0.4.0
6469
[0.3.0]: https://github.com/rust-embedded-community/embedded-nal/compare/v0.2.0...v0.3.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.5.0" # remember to update html_root_url
3+
version = "0.6.0" # remember to update html_root_url
44
authors = [
55
"Jonathan 'theJPster' Pallant <[email protected]>",
66
"Mathias Koch <[email protected]>",

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
//! # embedded-nal - A Network Abstraction Layer for Embedded Systems
22
3-
#![doc(html_root_url = "https://docs.rs/embedded-nal/0.5.0")]
3+
#![doc(html_root_url = "https://docs.rs/embedded-nal/0.6.0")]
44
#![no_std]
55
#![deny(missing_docs)]
66
#![deny(unsafe_code)]

0 commit comments

Comments
 (0)