diff --git a/CHANGELOG.md b/CHANGELOG.md index c43e1bd..9a71753 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,14 @@ +## v0.6.2 (2023-01-22) +### Fix +* Fix IndentationError appearing for some non-code messages ([`599c84f`](https://github.com/tm-a-t/TGPy/commit/599c84f9ba4104d678476b07b090c54529246ab9)) +* **docker:** Add /venv/bin to path ([`00be149`](https://github.com/tm-a-t/TGPy/commit/00be149b4ce827e97bb31b84f39cfa988a68d1ee)) + +### Documentation +* Update readme intro ([`c334669`](https://github.com/tm-a-t/TGPy/commit/c334669fcab8a6fc7a3f8330ae3217de21b97430)) + ## v0.6.1 (2023-01-06) ### Fix * Update command saying "Already up to date" while in fact updating correctly ([`9b25fe6`](https://github.com/tm-a-t/TGPy/commit/9b25fe60809cfbb045bd605c0fa78f5ae19d57d0)) diff --git a/pyproject.toml b/pyproject.toml index 3ff02d6..dcc1f88 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "tgpy" -version = "0.6.1" +version = "0.6.2" description = "Run Python code right in your Telegram messages" authors = ["tmat ", "vanutp ", "ntonee "] license = "MIT" diff --git a/tgpy/version.py b/tgpy/version.py index 68fd083..571b549 100644 --- a/tgpy/version.py +++ b/tgpy/version.py @@ -1,3 +1,3 @@ -__version__ = '0.6.1' +__version__ = '0.6.2' IS_DEV_BUILD = True COMMIT_HASH = None