Skip to content

Commit e757223

Browse files
committed
Preparing v0.5.0 release
1 parent 8851737 commit e757223

File tree

3 files changed

+11
-3
lines changed

3 files changed

+11
-3
lines changed

CHANGELOG.md

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

88
## Unreleased
99

10+
* None
11+
12+
## [0.5.0] - 2021-05-20
13+
14+
### Changed
15+
1016
- Bump dependency version of `heapless` to `v0.7.0` to utilize const generics.
1117
- Bump MSRV to 1.51.0 to get `min_const_generics` for `heapless`.
1218

@@ -52,7 +58,9 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
5258

5359
Initial release to crates.io.
5460

55-
[Unreleased]: https://github.com/rust-embedded-community/embedded-nal/compare/v0.3.0...HEAD
61+
[Unreleased]: https://github.com/rust-embedded-community/embedded-nal/compare/v0.5.0...HEAD
62+
[0.5.0]: https://github.com/rust-embedded-community/embedded-nal/compare/v0.4.0...v0.5.0
63+
[0.4.0]: https://github.com/rust-embedded-community/embedded-nal/compare/v0.3.0...v0.4.0
5664
[0.3.0]: https://github.com/rust-embedded-community/embedded-nal/compare/v0.2.0...v0.3.0
5765
[0.2.0]: https://github.com/rust-embedded-community/embedded-nal/compare/v0.1.0...v0.2.0
5866
[0.1.0]: https://github.com/rust-embedded-community/embedded-nal/releases/tag/v0.1.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.4.0" # remember to update html_root_url
3+
version = "0.5.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.4.0")]
3+
#![doc(html_root_url = "https://docs.rs/embedded-nal/0.5.0")]
44
#![no_std]
55
#![deny(missing_docs)]
66
#![deny(unsafe_code)]

0 commit comments

Comments
 (0)