Skip to content

Commit

Permalink
Bump version to 0.3.15
Browse files Browse the repository at this point in the history
  • Loading branch information
jrester committed Feb 3, 2022
1 parent 3715d55 commit ff0d57e
Show file tree
Hide file tree
Showing 6 changed files with 18 additions and 4 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog


## [0.3.15]

- fix version pin when there is a sha trailer (https://github.com/jrester/tesla_powerwall/pull/34)
- Add support for fetching the gateway_din (https://github.com/jrester/tesla_powerwall/pull/33)

## [0.3.14]

- revert changes from 0.3.11:
Expand Down
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2020 Jrester
Copyright (c) 2022 Jrester

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
8 changes: 8 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ Powerwall Software versions from 1.45.0 to 1.50.1 as well as 20.40 to 21.39.1 ar
- [Grid Status](#grid-status)
- [Operation mode](#operation-mode)
- [Powerwalls Serial Numbers](#powerwalls-serial-numbers)
- [Gateway DIN](#gateway-din)
- [VIN](#vin)
## Installation

Expand Down Expand Up @@ -360,6 +361,13 @@ serials = powerwall.get_serial_numbers()
#=> ["...", "...", ...]
```

### Gateway DIN

```python
din = powerwall.get_gateway_din()
#=> 4159645-02-A--TGXXX
```

### VIN

```python
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.14',
version='0.3.15',
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 @@ -33,4 +33,4 @@
)
from .powerwall import Powerwall

VERSION = "0.3.14"
VERSION = "0.3.15"
2 changes: 1 addition & 1 deletion tests/unit/test_powerwall.py
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ def test_get_status(self):
),
)
self.assertEqual(status.device_type, DeviceType.GW1)
self.assertEqual(status.version, "1.50.1")
self.assertEqual(status.version, "1.50.1 c58c2df3")

@responses.activate
def test_get_device_type(self):
Expand Down

0 comments on commit ff0d57e

Please sign in to comment.