diff --git a/CHANGELOG.md b/CHANGELOG.md index ea91f78..95edd80 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ +## v0.14.0 (2024-03-28) + +### Feature + +* **template:** Add open link variable to about yaml file ([`8137761`](https://github.com/entelecheia/hyperfast-python-template/commit/81377619b55898168376560f7d6cd09433bfad54)) +* **copier:** Update copier command to include 'open_link' data; add 'open_link' option to copier template; update copier.yaml ([`4a68cb3`](https://github.com/entelecheia/hyperfast-python-template/commit/4a68cb34a3bde0d74912898dd801bee9d48176c0)) + ## v0.13.1 (2024-03-11) ### Fix diff --git a/pyproject.toml b/pyproject.toml index cf2cb50..8fff555 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "hyperfast-python-template" -version = "0.13.1" +version = "0.14.0" description = "A python template that helps you jump start your project" authors = ["Young Joon Lee "] license = "MIT" diff --git a/src/hyperfastpy/_version.py b/src/hyperfastpy/_version.py index 7e0dc0e..9e78220 100644 --- a/src/hyperfastpy/_version.py +++ b/src/hyperfastpy/_version.py @@ -1 +1 @@ -__version__ = "0.13.1" +__version__ = "0.14.0"