Skip to content

Commit

Permalink
Docs fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
mihai-dinculescu committed Jun 29, 2024
1 parent cba5ba5 commit 8c7f5d9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ file. This change log follows the conventions of
### Fixed

- `ColorLightSetDeviceInfoParams` `hue` field validation has been changed from `between 1 and 360` to `between 0 and 360` to match the device's expected range.
- Fixed an issue where the `EnergyDataResult`'s `start_timestamp` and `end_timestamp` was not correctly adjusting for timezone offsets.
- Fixed an issue where the `EnergyDataResult's `start_timestamp` and `end_timestamp` did not correctly adjust for timezone offsets.
- The `chrono` dependency has been updated to `0.4.34` to fix the minimum version requirement.

### Removed
Expand All @@ -33,7 +33,7 @@ file. This change log follows the conventions of
### Fixed

- `ColorLightSetDeviceInfoParams` `hue` field validation has been changed from `between 1 and 360` to `between 0 and 360` to match the device's expected range.
- Fixed an issue where the `EnergyDataResult`'s `start_timestamp` and `end_timestamp` was not correctly adjusting for timezone offsets.
- Fixed an issue where the `EnergyDataResult's `start_timestamp` and `end_timestamp` did not correctly adjust for timezone offsets.
- All handlers are now correctly exported and can be imported from the `tapo` module.

### Removed
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ tapo = "0.7"

> main.rs
```rust
let device = ApiClient::new("<tapo-username>", "tapo-password")?
let device = ApiClient::new("<tapo-username>", "tapo-password")
.p110("<device ip address>")
.await?;

Expand Down

0 comments on commit 8c7f5d9

Please sign in to comment.