diff --git a/CHANGELOG.md b/CHANGELOG.md index 17ebf0e7..cdfebebf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.21.2a1] - 2023-05-11 +* Removed sales tariff from the returned simulated schedule. + ## [0.21.2a0] - 2023-05-11 * Temp fix for tcp/tls switching issue. diff --git a/iso15118/__init__.py b/iso15118/__init__.py index a61ba5f1..b3a1cb8d 100644 --- a/iso15118/__init__.py +++ b/iso15118/__init__.py @@ -1 +1 @@ -__version__ = "0.21.2a0" +__version__ = "0.21.2a1" diff --git a/iso15118/secc/controller/simulator.py b/iso15118/secc/controller/simulator.py index ebbd583c..b5897d39 100644 --- a/iso15118/secc/controller/simulator.py +++ b/iso15118/secc/controller/simulator.py @@ -504,7 +504,7 @@ async def get_sa_schedule_list( sales_tariff_entry=sales_tariff_entries, num_e_price_levels=2, ) - + sales_tariff = None # Putting the list of SAScheduleTuple entries together sa_schedule_tuple = SAScheduleTuple( sa_schedule_tuple_id=1, diff --git a/pyproject.toml b/pyproject.toml index d8139fb8..deffe5ad 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "iso15118" -version = "0.21.2a0" +version = "0.21.2a1" description = "Implementation of DIN SPEC 70121, ISO 15118-2 and -20 specs for SECC" authors = ["André Duarte ", "Dr. Marc Mültin ",