Skip to content

Commit

Permalink
chore: prepare v0.21.0 for release
Browse files Browse the repository at this point in the history
  • Loading branch information
Justintime50 committed Nov 22, 2022
1 parent 475483d commit f5ffd9f
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
5 changes: 3 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
# CHANGELOG

## NEXT RELEASE
## v0.21.0 (2022-11-21)

- Bumps `uwsgi` from `2.0.20` to `2.0.21` unlocking Python 3.10 and 3.11 support
- Bumps nginx version
- Changes from process/threads concurrency to dynamic worker concurrency with uwsgi
- Added timeouts and worker kill commands so Harvey will canabolize itself instead of the OS
- Added timeouts and worker kill commands so Harvey will canabolize itself instead of the OS in the case of long running workers or too many requests
- Adds `total_count` to collection responses

## v0.20.1 (2022-07-26)
Expand Down
2 changes: 1 addition & 1 deletion harvey/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ class Config:
# Harvey settings
host = os.getenv('HOST', '127.0.0.1')
port = int(os.getenv('PORT', 5000))
harvey_version = '0.20.1'
harvey_version = '0.21.0'
supported_deployments = {
'deploy',
'pull',
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@

setuptools.setup(
name='harvey-cd',
version='0.20.1',
version='0.21.0',
description='The lightweight Docker Compose deployment platform.',
long_description=long_description,
long_description_content_type="text/markdown",
Expand Down

0 comments on commit f5ffd9f

Please sign in to comment.