From d06464dab51241577cdf39206df7826905dfd4a3 Mon Sep 17 00:00:00 2001 From: Lukas Pustina Date: Tue, 10 Nov 2020 09:26:07 +0100 Subject: [PATCH] Bump crate to v0.5.0 --- CHANGELOG.md | 14 +++++++++++++- Cargo.toml | 2 +- 2 files changed, 14 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b3e5071..8608548 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,15 +7,27 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. ## [Unreleased] +## [0.5.0] - 2020-10-12 + +### Change + +* `NetatmoClient::get_station_data` returns a modified `StationData` struct. + + The changes occurred in the sub-struct `Administrative`. `pressureunit` is now an `Option` and `country` has been added. + + *Attention*: This is a breaking change necessary due to different responses from some Netatmo devices. + ## [0.3.0] - 2020-01-27 ### Add + * API endpoints * [home status](https://dev.netatmo.com/apidocumentation/energy#homestatus) * [homes data](https://dev.netatmo.com/apidocumentation/energy#homesdata) * [set room thermpoint](https://dev.netatmo.com/apidocumentation/energy#setroomthermpoint) -[Unreleased]: https://github.com/centerdevice/ceres/compare/v0.3.0...HEAD +[Unreleased]: https://github.com/centerdevice/ceres/compare/v0.5.0...HEAD +[0.5.0]: https://github.com/centerdevice/ceres/compare/v0.3.0...v0.5.0 [0.3.0]: https://github.com/centerdevice/ceres/compare/v0.2.1...v0.3.0 diff --git a/Cargo.toml b/Cargo.toml index 5af2220..78f24c2 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "netatmo-rs" -version = "0.4.0" +version = "0.5.0" authors = ["Lukas Pustina "] description = "Simple library to talk to Netatmo's API" repository = "https://github.com/lukaspustina/netatmo-rs.git"