Skip to content

Commit

Permalink
Fix backwards compatibility
Browse files Browse the repository at this point in the history
  • Loading branch information
jschlyter committed Sep 20, 2024
1 parent 44b01f4 commit 3cfd559
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Release Notes

## 1.8.1 (2024-09-20)

- Fix backwards compatibility

## 1.8.0 (2024-09-20)

- Support token refresh
Expand Down
13 changes: 13 additions & 0 deletions chargeamps/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,24 @@

from .models import (
ChargePoint,
ChargePointConnector,
ChargePointConnectorSettings,
ChargePointConnectorStatus,
ChargePointSettings,
ChargePointStatus,
StartAuth,
)

__all__ = [
"ChargePoint",
"ChargePointConnector",
"ChargePointConnectorStatus",
"ChargePointConnectorSettings",
"ChargePointSettings",
"ChargePointStatus",
"StartAuth",
]


class ChargeAmpsClient(metaclass=ABCMeta):
@abstractmethod
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

[tool.poetry]
name = "chargeamps"
version = "1.8.0"
version = "1.8.1"
readme = "README.md"
description = "Charge-Amps API bindings for Python"
authors = ["Jakob Schlyter <[email protected]>"]
Expand Down

0 comments on commit 3cfd559

Please sign in to comment.