Skip to content

Commit

Permalink
bump version to 0.3.12
Browse files Browse the repository at this point in the history
  • Loading branch information
jrester committed Oct 23, 2021
1 parent 0a99eb9 commit 237a90e
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 6 deletions.
6 changes: 4 additions & 2 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
# Changelog

## [0.3.11]
## [0.3.12]

- add MeterType `generator` (https://github.com/jrester/tesla_powerwall/issues/30)

### Changed
## [0.3.11]

- meters of `MetersAggregates` can now only be accessed via `get_meter` (https://github.com/home-assistant/core/issues/56660)
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Python Tesla Powerwall API for consuming a local endpoint. The API is by no mean

> Note: This is not an official API provided by Tesla and as such might fail at any time.
Powerwall Software versions from 1.45.0 to 1.50.1 as well as 20.40 to 20.49 are tested, but others will probably work too. If you encounter an error regarding a change in the API of the Powerwall because your Powerwall has a different version than listed here please open an Issue to report this change so it can be fixed.
Powerwall Software versions from 1.45.0 to 1.50.1 as well as 20.40 to 21.35.0 are tested, but others will probably work too. If you encounter an error regarding a change in the API of the Powerwall because your Powerwall has a different version than listed here please open an Issue to report this change so it can be fixed.

> For more information about versioning see [API versioning](#api-versioning).
Expand Down Expand Up @@ -239,7 +239,7 @@ meters.get_meter(MeterType.SOLAR)

```

Available meters are: `solar`, `site`, `load` and `battery`
Available meters are: `solar`, `site`, `load` and `battery`. If you have a generator you can also access it with the `generator` MeterType.

> Note: if the powerwall you are working with has no solar panels installed `get_meter(MeterType.SOLAR)` returns `None`
> With the attribute `MetersAggregates.meters` you can get the available meters in the response
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
name="tesla_powerwall",
author="Jrester",
author_email="[email protected]",
version='0.3.11',
version='0.3.12',
description="API for Tesla Powerwall",
long_description=long_description,
long_description_content_type="text/markdown",
Expand Down
2 changes: 1 addition & 1 deletion tesla_powerwall/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,4 +31,4 @@
)
from .powerwall import Powerwall

VERSION = "0.3.11"
VERSION = "0.3.12"

0 comments on commit 237a90e

Please sign in to comment.