diff --git a/CHANGELOG.md b/CHANGELOG.md index 441efc4..de1858e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ +## v0.6.4 (2023-03-17) +### Fix +* Decode jwt dates ([`445b4f9`](https://github.com/Lash-L/southern_company_api/commit/445b4f93913e778d70b12387a334f31987b934b8)) + ## v0.6.3 (2023-03-17) ### Fix * Test removing request token expiration ([`9a20804`](https://github.com/Lash-L/southern_company_api/commit/9a2080480095bbf241c125b6cb688ddd75d381a6)) diff --git a/pyproject.toml b/pyproject.toml index 14d9774..ee9c1ff 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "southern-company-api" -version = "0.6.3" +version = "0.6.4" description = "Control Southern company websites with this api" authors = ["Luke "] license = "MIT" diff --git a/src/southern_company_api/__init__.py b/src/southern_company_api/__init__.py index 70641d1..d5de9ed 100644 --- a/src/southern_company_api/__init__.py +++ b/src/southern_company_api/__init__.py @@ -2,7 +2,7 @@ from .company import COMPANY_MAP, Company from .parser import SouthernCompanyAPI, get_request_verification_token -__version__ = "0.6.3" +__version__ = "0.6.4" __all__ = [ "Account",