Skip to content

Commit

Permalink
Bump version to v0.8.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Justintime50 committed Mar 6, 2021
1 parent 36ee5a2 commit dd9408e
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 2 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion harvey/globals.py
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down

0 comments on commit dd9408e

Please sign in to comment.