diff --git a/CHANGELOG.md b/CHANGELOG.md index 4b1e59c..2318a35 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ +## v0.12.0 (2022-11-17) +### Feature +* Support for mike ([`3125c8c`](https://github.com/mrjk/python-project-poetry-template/commit/3125c8c7584d098539c8afb17e529c80984227e2)) + ## v0.11.11 (2022-11-17) ### Fix * Ci scripts ([`d78a0fe`](https://github.com/mrjk/python-project-poetry-template/commit/d78a0fe72d648be5066e4ee302335aa400ac4330)) diff --git a/VERSION_NOTES.md b/VERSION_NOTES.md index 9ff9430..6b98550 100644 --- a/VERSION_NOTES.md +++ b/VERSION_NOTES.md @@ -1,8 +1,2 @@ -### Fix -* Ci scripts ([`d78a0fe`](https://github.com/mrjk/python-project-poetry-template/commit/d78a0fe72d648be5066e4ee302335aa400ac4330)) -* Old project occurences ([`1478958`](https://github.com/mrjk/python-project-poetry-template/commit/147895837ea5d495ddca820b733ffc3bd088a291)) -* Update ci scripts ([`6012679`](https://github.com/mrjk/python-project-poetry-template/commit/6012679eb980cc6733bf112f633c8ee0d664b261)) - -### Documentation -* Add documentation about tooling ([`bf8be39`](https://github.com/mrjk/python-project-poetry-template/commit/bf8be39e16bc8073fdee81a62697ff09e9150fe4)) -* Update docs ([`de0109d`](https://github.com/mrjk/python-project-poetry-template/commit/de0109dbec7856755ce965c576c8aedb6713b5f3)) +### Feature +* Support for mike ([`3125c8c`](https://github.com/mrjk/python-project-poetry-template/commit/3125c8c7584d098539c8afb17e529c80984227e2)) diff --git a/myprj/__version__.py b/myprj/__version__.py index 652960e..acf48f6 100644 --- a/myprj/__version__.py +++ b/myprj/__version__.py @@ -1,2 +1,2 @@ # -*- coding: utf-8 -*- -__version__ = "0.11.11" +__version__ = "0.12.0" diff --git a/pyproject.toml b/pyproject.toml index 25840e3..4222670 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "python-project-poetry-template" -version = "0.11.11" +version = "0.12.0" description = "Python Project Poetry Template" authors = ["mrjk"] license = "GPLv3"