Skip to content

Commit

Permalink
chore: change name from harvey-ci to harvey-cd
Browse files Browse the repository at this point in the history
  • Loading branch information
Justintime50 committed May 22, 2022
1 parent 894bd05 commit 31f1f28
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 6 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
# CHANGELOG

## NEXT RELEASE
## v0.19.0 (2022-05-22)

- Changes name of the PyPI project from `harvey-ci` to `harvey-cd` to better match the nature of the application
- Consolidates all sqlite database tables into a single database file for better performance and disk savings (to properly migrate to using this new database structure, please run the `utils/consolidate_sqlite_databases.py` script which will migrate and consolidate the old database(s) content to the single unified file)

## v0.18.0 (2022-05-01)
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ The lightweight Docker Compose deployment platform.

[![Build Status](https://github.com/Justintime50/harvey/workflows/build/badge.svg)](https://github.com/Justintime50/harvey/actions)
[![Coverage Status](https://coveralls.io/repos/github/Justintime50/harvey/badge.svg?branch=main)](https://coveralls.io/github/Justintime50/harvey?branch=main)
[![PyPi](https://img.shields.io/pypi/v/harvey-ci)](https://pypi.org/project/harvey-ci/)
[![PyPi](https://img.shields.io/pypi/v/harvey-cd)](https://pypi.org/project/harvey-cd/)
[![Licence](https://img.shields.io/github/license/justintime50/harvey)](LICENSE)

<img src="https://raw.githubusercontent.com/justintime50/assets/main/src/harvey/showcase.png" alt="Showcase">
Expand Down
2 changes: 1 addition & 1 deletion harvey/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ class Config:
# Harvey settings
host = os.getenv('HOST', '127.0.0.1')
port = int(os.getenv('PORT', 5000))
harvey_version = '0.18.0'
harvey_version = '0.19.0'
supported_deployments = {
'deploy',
'pull',
Expand Down
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@
]

setuptools.setup(
name='harvey-ci',
version='0.18.0',
name='harvey-cd',
version='0.19.0',
description='The lightweight Docker Compose deployment platform.',
long_description=long_description,
long_description_content_type="text/markdown",
Expand Down Expand Up @@ -62,7 +62,7 @@
'dev': DEV_REQUIREMENTS,
},
entry_points={
'console_scripts': ['harvey-ci=harvey.app:main'],
'console_scripts': ['harvey=harvey.app:main'],
},
python_requires='>=3.7, <4',
)

0 comments on commit 31f1f28

Please sign in to comment.