diff --git a/CHANGELOG.md b/CHANGELOG.md index 1565e02..18f979c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # CHANGELOG +## v0.8.1 (2021-03-06) + +* Fixed a bug where webhook secrets couldn't be decoded properly +* Fixed a bug where `.env` files wouldn't load variables properly +* Container healthchecks may have previously failed with a key error if the container wasn't completely running yet. Corrected key error and added retry logic for checking if a container is running after deployments +* Cleaned and refactored various code +* Various additional bug fixes + ## v0.8.0 (2020-12-20) * Refactored the `image` module and added unit tests diff --git a/harvey/globals.py b/harvey/globals.py index f900c42..daed318 100644 --- a/harvey/globals.py +++ b/harvey/globals.py @@ -6,7 +6,7 @@ class Global(): """ DOCKER_VERSION = 'v1.41' # Docker API version # TODO: Figure out how to sync this version number with the one in `setup.py` - HARVEY_VERSION = '0.8.0' # Harvey release + HARVEY_VERSION = '0.8.1' # Harvey release PROJECTS_PATH = 'projects' PROJECTS_LOG_PATH = 'logs/projects' HARVEY_LOG_PATH = 'logs/harvey' diff --git a/setup.py b/setup.py index 514bb7a..3e47c9c 100644 --- a/setup.py +++ b/setup.py @@ -13,7 +13,7 @@ setuptools.setup( name='harvey-ci', - version='0.8.0', + version='0.8.1', description='Your personal CI/CD and Docker orchestration platform.', long_description=long_description, long_description_content_type="text/markdown",