Skip to content

Commit 86b95eb

Browse files
committed
Prepare for 0.4.0 release
1 parent ec2ded0 commit 86b95eb

File tree

3 files changed

+7
-2
lines changed

3 files changed

+7
-2
lines changed

CHANGELOG.md

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

88
## Unreleased
99

10+
* None
11+
12+
## [0.4.0] - 2021-03-05
13+
14+
### Changed
1015
- Changed [`Dns`](./src/dns.rs) methods to return `nb::Result<..>` to allow non-blocking implementations.
1116
- Bump dependency version of `heapless` to `v0.6.1` to address security issue of sub-dependency.
1217
- Bump dependency version of `no-std-net` to `v0.5`.

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.3.0" # remember to update html_root_url
3+
version = "0.4.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.3.0")]
3+
#![doc(html_root_url = "https://docs.rs/embedded-nal/0.4.0")]
44
#![no_std]
55
#![deny(missing_docs)]
66
#![deny(unsafe_code)]

0 commit comments

Comments
 (0)