diff --git a/.env.dev.docker b/.env.dev.docker index 3f65ba7..5f86927 100644 --- a/.env.dev.docker +++ b/.env.dev.docker @@ -1,5 +1,6 @@ # SLAC Settings SLAC_INIT_TIMEOUT=1000 +ATTEN_RESULTS_TIMEOUT=2000 # LOG Settings LOG_LEVEL="DEBUG" diff --git a/CHANGELOG.md b/CHANGELOG.md index 83d015c..462df2e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,14 +5,22 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.8.2] - 2022-06-28 + +- add License file to the repo by @tropxy in https://github.com/SwitchEV/pyslac/pull/28 +- Added ATTEN_RESULTS_TIMEOUT as an ENV by @tropxy in https://github.com/SwitchEV/pyslac/pull/30 +- Change/atten result timeout validation by @tropxy in https://github.com/SwitchEV/pyslac/pull/31 + ## [0.8.1] - 2022-05-24 ### Changed + - bumped version to be published in pypi server by @tropxy in https://github.com/SwitchEV/pyslac/pull/27 ## [0.8.0] - 2022-05-24 ### Changed + - switched the package upload to public pypi server by @tropxy in https://github.com/SwitchEV/slac/pull/24 - refactored the package name to pyslac by @tropxy in https://github.com/SwitchEV/pyslac/pull/26 @@ -27,12 +35,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Removed -- removed references of the switch mqtt API by @tropxy in https://github.com/SwitchEV/slac/pull/18 +- removed references of the switch mqtt API by @tropxy in https://github.com/SwitchEV/slac/pull/18 ### Added -- added enable_hlc_charging as a method of SlacSessionController by @tropxy in https://github.com/SwitchEV/slac/pull/19 - +- added enable_hlc_charging as a method of SlacSessionController by @tropxy in https://github.com/SwitchEV/slac/pull/19 ## [0.6.0] - 2022-04-12 diff --git a/pyproject.toml b/pyproject.toml index b3d6696..f74a6e3 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "pyslac" -version = "0.8.1" +version = "0.8.2" description = "SLAC Protocol implementation, defined in ISO15118-3" authors = ["André Duarte "]