Skip to content

Commit

Permalink
Updated version number to 0.28.3 (#422)
Browse files Browse the repository at this point in the history
* Updated version number to 0.28.3

* ev target voltage is set to 500 in simulator
  • Loading branch information
ikaratass authored Jun 18, 2024
1 parent f373f2a commit 676b315
Show file tree
Hide file tree
Showing 5 changed files with 51 additions and 48 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]
## [0.28.3] - 2024-06-18
* Fix/min charge current is missing by @ikaratass in https://github.com/SwitchEV/iso15118/pull/421

## [0.28.2] - 2024-06-06
* Added missed param in ev data by @shalinnijel2 in https://github.com/SwitchEV/iso15118/pull/412
* session limits are rearranged according to rated limits by @ikaratass in https://github.com/SwitchEV/iso15118/pull/415
Expand Down
2 changes: 1 addition & 1 deletion iso15118/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.28.2"
__version__ = "0.28.3"
4 changes: 2 additions & 2 deletions iso15118/evcc/controller/simulator.py
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ def __init__(self, evcc_config: EVCCConfig):
multiplier=1, value=8000, unit=UnitSymbol.WATT
),
dc_max_voltage_limit=PVEVMaxVoltageLimit(
multiplier=3, value=20, unit=UnitSymbol.VOLTAGE
multiplier=1, value=50, unit=UnitSymbol.VOLTAGE
),
dc_energy_capacity=PVEVEnergyCapacity(
multiplier=1, value=7000, unit=UnitSymbol.WATT_HOURS
Expand All @@ -141,7 +141,7 @@ def __init__(self, evcc_config: EVCCConfig):
multiplier=0, value=1, unit=UnitSymbol.AMPERE
),
dc_target_voltage=PVEVTargetVoltage(
multiplier=3, value=20, unit=UnitSymbol.VOLTAGE
multiplier=1, value=50, unit=UnitSymbol.VOLTAGE
),
)

Expand Down
88 changes: 44 additions & 44 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "iso15118"
version = "0.28.2"
version = "0.28.3"
description = "Implementation of DIN SPEC 70121, ISO 15118-2 and -20 specs for SECC"
authors = ["André Duarte <andre@switch-ev.com>",
"Dr. Marc Mültin <marc@switch-ev.com>",
Expand Down

0 comments on commit 676b315

Please sign in to comment.