Skip to content
This repository was archived by the owner on May 28, 2025. It is now read-only.

Commit dd9408e

Browse files
committed
Bump version to v0.8.1
1 parent 36ee5a2 commit dd9408e

File tree

3 files changed

+10
-2
lines changed

3 files changed

+10
-2
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# CHANGELOG
22

3+
## v0.8.1 (2021-03-06)
4+
5+
* Fixed a bug where webhook secrets couldn't be decoded properly
6+
* Fixed a bug where `.env` files wouldn't load variables properly
7+
* 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
8+
* Cleaned and refactored various code
9+
* Various additional bug fixes
10+
311
## v0.8.0 (2020-12-20)
412

513
* Refactored the `image` module and added unit tests

harvey/globals.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ class Global():
66
"""
77
DOCKER_VERSION = 'v1.41' # Docker API version
88
# TODO: Figure out how to sync this version number with the one in `setup.py`
9-
HARVEY_VERSION = '0.8.0' # Harvey release
9+
HARVEY_VERSION = '0.8.1' # Harvey release
1010
PROJECTS_PATH = 'projects'
1111
PROJECTS_LOG_PATH = 'logs/projects'
1212
HARVEY_LOG_PATH = 'logs/harvey'

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313

1414
setuptools.setup(
1515
name='harvey-ci',
16-
version='0.8.0',
16+
version='0.8.1',
1717
description='Your personal CI/CD and Docker orchestration platform.',
1818
long_description=long_description,
1919
long_description_content_type="text/markdown",

0 commit comments

Comments
 (0)