diff --git a/CHANGELOG.md b/CHANGELOG.md index 38057f9f5..38fa80bf5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 The intended audience of this file is for py42 consumers -- as such, changes that don't affect how a consumer would use the library (e.g. adding unit tests, updating documentation, etc) are not captured here. +### 0.5.3 - 2020-05-04 + +### Fixed + +- Issue introduced in py42 v1.1.0 that prevented `high-risk-employee` and `departing-employee` commands from working properly. + ## 0.5.2 - 2020-04-29 ### Fixed diff --git a/setup.py b/setup.py index 8e68b342f..1b8ca2860 100644 --- a/setup.py +++ b/setup.py @@ -24,7 +24,7 @@ "c42eventextractor==0.2.7", "keyring==18.0.1", "keyrings.alt==3.2.0", - "py42>=1.0.0", + "py42>=1.1.1", ], license="MIT", include_package_data=True, diff --git a/src/code42cli/__version__.py b/src/code42cli/__version__.py index 722515271..43a1e95ba 100644 --- a/src/code42cli/__version__.py +++ b/src/code42cli/__version__.py @@ -1 +1 @@ -__version__ = "0.5.2" +__version__ = "0.5.3"