Prepare 0.4.0 release

pull/8/head v0.4.0
Diego Barrios Romero 2021-05-22 23:16:44 +02:00
parent 9c6fe164b8
commit a657eec8d6
3 changed files with 8 additions and 3 deletions

View File

@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
## [Unreleased]
...
## [0.4.0] - 2021-05-22
### Changed
- [breaking-change] Return `Error::InvalidDeviceState` if it was not possible to read the
date and/or time from the device because the state of the device corresponds to
@ -64,7 +68,8 @@ this CHANGELOG.
[`chrono`]: https://crates.io/crates/chrono
[`rtcc`]: https://crates.io/crates/rtcc
[Unreleased]: https://github.com/eldruin/ds323x-rs/compare/v0.3.2...HEAD
[Unreleased]: https://github.com/eldruin/ds323x-rs/compare/v0.4.0...HEAD
[0.4.0]: https://github.com/eldruin/ds323x-rs/compare/v0.3.2...v0.4.0
[0.3.2]: https://github.com/eldruin/ds323x-rs/compare/v0.3.1...v0.3.2
[0.3.1]: https://github.com/eldruin/ds323x-rs/compare/v0.3.0...v0.3.1
[0.3.0]: https://github.com/eldruin/ds323x-rs/compare/v0.2.0...v0.3.0

View File

@ -1,6 +1,6 @@
[package]
name = "ds323x"
version = "0.3.2" # remember to update html_root_url
version = "0.4.0" # remember to update html_root_url
authors = ["Diego Barrios Romero <eldruin@gmail.com>"]
repository = "https://github.com/eldruin/ds323x-rs"
license = "MIT OR Apache-2.0"

View File

@ -386,7 +386,7 @@
//! rtc.set_alarm1_hms(time).unwrap();
//! ```
#![doc(html_root_url = "https://docs.rs/ds323x/0.3.2")]
#![doc(html_root_url = "https://docs.rs/ds323x/0.4.0")]
#![deny(unsafe_code, missing_docs)]
#![no_std]