Skip to content

Commit

Permalink
Prepare 0.2.1 release
Browse files Browse the repository at this point in the history
  • Loading branch information
eldruin committed Sep 8, 2021
1 parent 84a1d79 commit e4f08aa
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,15 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.

## [Unreleased]

...

## [0.2.1] - 2021-09-08

### Fixed
- Error when converting hours between 24H mode and AM/PM. Thanks to @ppelleti.

## [0.2.0] - 2020-02-09

### Changed
- Changed `get_datetime()` and `set_datetime()` parameter from `DateTime`
to `chrono::NaiveDateTime`.
Expand All @@ -32,6 +37,7 @@ This is the initial release to crates.io of the feature-complete driver. There
may be some API changes in the future. All changes will be documented in this
CHANGELOG.

[Unreleased]: https://github.com/eldruin/mcp794xx-rs/compare/v0.2.0...HEAD
[Unreleased]: https://github.com/eldruin/mcp794xx-rs/compare/v0.2.1...HEAD
[0.2.1]: https://github.com/eldruin/mcp794xx-rs/compare/v0.2.0...v0.2.1
[0.2.0]: https://github.com/eldruin/mcp794xx-rs/compare/v0.1.0...v0.2.0
[0.1.0]: https://github.com/eldruin/mcp794xx-rs/releases/tag/v0.1.0
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "mcp794xx"
version = "0.2.0" # remember to update html_root_url
version = "0.2.1" # remember to update html_root_url
authors = ["Diego Barrios Romero <eldruin@gmail.com>"]
repository = "https://github.com/eldruin/mcp794xx-rs"
license = "MIT OR Apache-2.0"
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -331,7 +331,7 @@
//! ```
//!
#![doc(html_root_url = "https://docs.rs/mcp794xx/0.2.0")]
#![doc(html_root_url = "https://docs.rs/mcp794xx/0.2.1")]
#![deny(unsafe_code, missing_docs)]
#![no_std]

Expand Down

0 comments on commit e4f08aa

Please sign in to comment.