diff --git a/CHANGELOG.md b/CHANGELOG.md index 75a792e..ea8d08e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ +## v0.6.2 (2023-03-09) +### Fix +* Removed accountNumber ([`dfab85e`](https://github.com/Lash-L/southern_company_api/commit/dfab85e65d9b37c104745b240ca44ee3e247c35e)) + ## v0.6.1 (2023-03-02) ### Fix * First of month to 00:00 ([`70d3c0a`](https://github.com/Lash-L/southern_company_api/commit/70d3c0a809e8a1d82ceaaac043b7ae0d4e253b33)) diff --git a/pyproject.toml b/pyproject.toml index f162685..adeada8 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "southern-company-api" -version = "0.6.1" +version = "0.6.2" 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 6d07fd1..b1bfd00 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.1" +__version__ = "0.6.2" __all__ = [ "Account",