diff --git a/CHANGELOG.md b/CHANGELOG.md index 681b63e..b9a1407 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ +## v0.38.0 (2023-04-05) +### Feature +* **execute:** When executing script pass tool & env as envvars ([`2c17a33`](https://github.com/lt-mayonesa/hexagon/commit/2c17a332215f1936de97549a450f36aac64cc86a)) + ## v0.37.0 (2023-04-03) ### Feature * **args:** Show validation error matching hexagon format ([`6027468`](https://github.com/lt-mayonesa/hexagon/commit/6027468e00b645c64b29f08f1313754033971774)) diff --git a/README.md b/README.md index 729ccd0..194bdb8 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.37.0/hexagon-0.37.0.tar.gz +python3 -m pip install https://github.com/lt-mayonesa/hexagon/releases/download/v0.38.0/hexagon-0.38.0.tar.gz ``` ### Create your teams CLI diff --git a/setup.py b/setup.py index 897b26b..1b581fd 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.37.0" +__version__ = "0.38.0" def __markers(config: dict):