From fc2901dec6f6aceb6ecc166603a38a83617178f0 Mon Sep 17 00:00:00 2001 From: Diego Barrios Romero Date: Fri, 24 Sep 2021 09:55:55 +0200 Subject: [PATCH] Prepare 0.3.0 release --- CHANGELOG.md | 8 +++++++- Cargo.toml | 2 +- src/lib.rs | 1 + 3 files changed, 9 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c6cd2db..2484ae0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,8 +7,13 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. ## [Unreleased] +... + +## [0.3.0] - 2021-09-24 + ### Changed - [breaking-change] Remove `Default` implementation for `Ad989x`. +- Updated dependencies ## [0.2.0] - 2019-11-10 @@ -25,6 +30,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. Initial release to crates.io. AD9833 and AD9837 devices are fully supported. All changes will be documented in this CHANGELOG. -[Unreleased]: https://github.com/eldruin/ad983x-rs/compare/v0.2.0...HEAD +[Unreleased]: https://github.com/eldruin/ad983x-rs/compare/v0.3.0...HEAD +[0.3.0]: https://github.com/eldruin/ad983x-rs/compare/v0.2.0...v0.3.0 [0.2.0]: https://github.com/eldruin/ad983x-rs/compare/v0.1.1...v0.2.0 [0.1.1]: https://github.com/eldruin/ad983x-rs/compare/v0.1.0...v0.1.1 \ No newline at end of file diff --git a/Cargo.toml b/Cargo.toml index f81fe23..3ba8dc7 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ad983x" -version = "0.2.0" +version = "0.3.0" # remember to update html_root_url authors = ["Diego Barrios Romero "] repository = "https://github.com/eldruin/ad983x-rs" license = "MIT OR Apache-2.0" diff --git a/src/lib.rs b/src/lib.rs index 4ceaa24..4ed9959 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -177,6 +177,7 @@ //! // Hardware pins can now be used to control the device. //! // The corresponding software settings will be ignored. //! ``` +#![doc(html_root_url = "https://docs.rs/ad983x/0.3.0")] #![deny(unsafe_code, missing_docs)] #![no_std]