Skip to content

Commit fdeeeaf

Browse files
ryan-summerseldruin
authored andcommitted
Preparing v0.3.0 release
1 parent f937765 commit fdeeeaf

File tree

3 files changed

+9
-4
lines changed

3 files changed

+9
-4
lines changed

CHANGELOG.md

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,11 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
66
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
77

8-
## [Unreleased]
8+
## Unreleased
9+
10+
* None
11+
12+
## [0.3.0] - 2021-02-15
913

1014
### Added
1115
- New optional struct [`SharedNal`](./src/stack/share.rs) that can share a single underlying implementation among several users within a thread.
@@ -38,6 +42,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
3842

3943
Initial release to crates.io.
4044

41-
[Unreleased]: https://github.com/rust-embedded-community/embedded-nal/compare/v0.2.0...HEAD
45+
[Unreleased]: https://github.com/rust-embedded-community/embedded-nal/compare/v0.3.0...HEAD
46+
[0.3.0]: https://github.com/rust-embedded-community/embedded-nal/compare/v0.2.0...v0.3.0
4247
[0.2.0]: https://github.com/rust-embedded-community/embedded-nal/compare/v0.1.0...v0.2.0
4348
[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.2.0" # remember to update html_root_url
3+
version = "0.3.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.2.0")]
3+
#![doc(html_root_url = "https://docs.rs/embedded-nal/0.3.0")]
44
#![no_std]
55
#![deny(missing_docs)]
66
#![deny(unsafe_code)]

0 commit comments

Comments
 (0)