diff --git a/CHANGELOG.md b/CHANGELOG.md index 1a5e310..9a436d2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ +## v0.41.1 (2023-04-13) +### Fix +* **args:** Apply default type validation when prompting ([`f97911f`](https://github.com/lt-mayonesa/hexagon/commit/f97911faee9d4437d2f92344276a8c69af346270)) + ## v0.41.0 (2023-04-13) ### Feature * **theme:** Add no_border prompt theme ([`bb39265`](https://github.com/lt-mayonesa/hexagon/commit/bb39265274507eeac3c47605d41bc0b21d317de1)) diff --git a/README.md b/README.md index bf702ef..d9c3d91 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.41.0/hexagon-0.41.0.tar.gz +python3 -m pip install https://github.com/lt-mayonesa/hexagon/releases/download/v0.41.1/hexagon-0.41.1.tar.gz ``` ### Create your teams CLI diff --git a/setup.py b/setup.py index 75e7251..ef06be6 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.41.0" +__version__ = "0.41.1" def __markers(config: dict):