From 36f9a6493482997746139e8cc0f00d02ea4e6b33 Mon Sep 17 00:00:00 2001 From: github-actions Date: Sun, 28 Apr 2024 19:51:32 +0000 Subject: [PATCH] chore(release): v0.15.0 [skip ci] --- CHANGELOG.md | 14 ++++++++++++++ pyproject.toml | 2 +- tgpy/version.py | 2 +- 3 files changed, 16 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 88764fa..2d12389 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,20 @@ +## v0.15.0 (2024-04-28) + +### Feature + +* **Telethon:** Layer 179 ([`010f4ef`](https://github.com/tm-a-t/TGPy/commit/010f4ef4b17b40f46a99119777f216d1ee79debd)) +* Cd to DATA_DIR/workdir on tgpy start ([`f51dc84`](https://github.com/tm-a-t/TGPy/commit/f51dc8477ba116ad9132dd2a65c0f7630415c357)) +* Real time progress feedback ([`8e85d7a`](https://github.com/tm-a-t/TGPy/commit/8e85d7a585f89c9c1dc0eba498390ad475e7c439)) +* Stop running message execution on `cancel`, add `stop` command to only stop execution without blacklisting the message ([`547c1c6`](https://github.com/tm-a-t/TGPy/commit/547c1c6d158e113f9ca63c8d0b87eb69a527d6af)) +* Truncate exceptions ([#39](https://github.com/tm-a-t/TGPy/issues/39)) ([`739fbbc`](https://github.com/tm-a-t/TGPy/commit/739fbbcdc2f96ed54a10620f87049b0107c14cc6)) + +### Documentation + +* Reset page scale back to normal ([`20ec126`](https://github.com/tm-a-t/TGPy/commit/20ec1266f03d9f5d0e87deba93bfdf1d43cb1b5d)) + ## v0.14.1 (2024-03-09) ### Fix diff --git a/pyproject.toml b/pyproject.toml index 5b9b4ce..8974c85 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "tgpy" -version = "0.14.1" +version = "0.15.0" 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 ec7c271..c6673a2 100644 --- a/tgpy/version.py +++ b/tgpy/version.py @@ -1,3 +1,3 @@ -__version__ = '0.14.1' +__version__ = '0.15.0' IS_DEV_BUILD = True COMMIT_HASH = None