diff --git a/CHANGELOG.md b/CHANGELOG.md index bac6d16..dc3df50 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,11 @@ +## v0.39.0 (2023-04-10) +### Feature +* **args:** Apply model validations when prompting ([`86bf096`](https://github.com/lt-mayonesa/hexagon/commit/86bf096817194810d0143bc98bfafad575435115)) +* **args:** Prompt for tool arguments from cli_args object ([`67d65ab`](https://github.com/lt-mayonesa/hexagon/commit/67d65ab9a4a20cc9b6d7438854cc480decdbbb07)) + ## v0.38.1 (2023-04-06) ### Fix * **args:** Trace all input args and one time only ([`8b69454`](https://github.com/lt-mayonesa/hexagon/commit/8b6945487dddf9d4bb31a916743689e1831ee13b)) diff --git a/README.md b/README.md index 7facd22..9d2877f 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.38.1/hexagon-0.38.1.tar.gz +python3 -m pip install https://github.com/lt-mayonesa/hexagon/releases/download/v0.39.0/hexagon-0.39.0.tar.gz ``` ### Create your teams CLI diff --git a/setup.py b/setup.py index 18407f6..dd33d50 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.38.1" +__version__ = "0.39.0" def __markers(config: dict):