diff --git a/CHANGELOG.md b/CHANGELOG.md index cba5521..9c74e7e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,3 +4,14 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). + +## Unreleased + +* None + +## [0.1.0] - 2021-05-18 + +Initial release to crates.io. + +[Unreleased]: https://github.com/rust-embedded-community/embedded-storage/compare/v0.1.0...HEAD +[0.1.0]: https://github.com/rust-embedded-community/embedded-storage/releases/tag/v0.1.0 \ No newline at end of file diff --git a/src/lib.rs b/src/lib.rs index 683d1d9..acc9ff9 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -3,6 +3,7 @@ //! Storage traits to allow on and off board storage devices to read and write //! data. +#![doc(html_root_url = "https://docs.rs/embedded-storage/0.1.0")] #![no_std] #![deny(missing_docs)] #![deny(unsafe_code)]