diff --git a/CHANGELOG.md b/CHANGELOG.md index e31f30a..2937f05 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,12 @@ +## v0.51.0 (2023-10-29) + +### Feature + +* **prompt:** CTRL+P create directory if not exists ([#61](https://github.com/lt-mayonesa/hexagon/issues/61)) ([`05002ac`](https://github.com/lt-mayonesa/hexagon/commit/05002ac13c5f492004a8edc99d4a69df965c3ab5)) + ## v0.50.0 (2023-10-28) ### Feature diff --git a/README.md b/README.md index 67d47f3..83d807f 100644 --- a/README.md +++ b/README.md @@ -12,7 +12,7 @@ Make your team's knowledge truly accessible, truly shared, and truly empowering ### Install hexagon ```bash -python3 -m pip install https://github.com/lt-mayonesa/hexagon/releases/download/v0.50.0/hexagon-0.50.0.tar.gz +python3 -m pip install https://github.com/lt-mayonesa/hexagon/releases/download/v0.51.0/hexagon-0.51.0.tar.gz ``` ### Create your teams CLI diff --git a/setup.py b/setup.py index 7de6545..f68831c 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ import setuptools # this updates automatically https://python-semantic-release.readthedocs.io/en/latest/index.html -__version__ = "0.50.0" +__version__ = "0.51.0" def __markers(config: dict):