mirror of https://github.com/eldruin/ds323x-rs
parent
9c6fe164b8
commit
a657eec8d6
|
@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
|
||||||
|
|
||||||
## [Unreleased]
|
## [Unreleased]
|
||||||
|
|
||||||
|
...
|
||||||
|
|
||||||
|
## [0.4.0] - 2021-05-22
|
||||||
|
|
||||||
### Changed
|
### Changed
|
||||||
- [breaking-change] Return `Error::InvalidDeviceState` if it was not possible to read the
|
- [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
|
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
|
[`chrono`]: https://crates.io/crates/chrono
|
||||||
[`rtcc`]: https://crates.io/crates/rtcc
|
[`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.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.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
|
[0.3.0]: https://github.com/eldruin/ds323x-rs/compare/v0.2.0...v0.3.0
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "ds323x"
|
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>"]
|
authors = ["Diego Barrios Romero <eldruin@gmail.com>"]
|
||||||
repository = "https://github.com/eldruin/ds323x-rs"
|
repository = "https://github.com/eldruin/ds323x-rs"
|
||||||
license = "MIT OR Apache-2.0"
|
license = "MIT OR Apache-2.0"
|
||||||
|
|
|
@ -386,7 +386,7 @@
|
||||||
//! rtc.set_alarm1_hms(time).unwrap();
|
//! 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)]
|
#![deny(unsafe_code, missing_docs)]
|
||||||
#![no_std]
|
#![no_std]
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue