From c1915aa9924ac84488bc961e3bc866b742d5e452 Mon Sep 17 00:00:00 2001 From: github-actions Date: Wed, 15 Feb 2023 17:52:44 +0000 Subject: [PATCH] chore(release): v0.8.0 [skip ci] --- CHANGELOG.md | 7 +++++++ pyproject.toml | 2 +- tgpy/version.py | 2 +- 3 files changed, 9 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 11e69c9..7037830 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,13 @@ +## v0.8.0 (2023-02-15) +### Feature +* Wrap sys.stdout instead of print to capture output + properly use contextvars ([`7aa2015`](https://github.com/tm-a-t/TGPy/commit/7aa2015215ad621b405c6471add250bf11aa70c2)) + +### Fix +* Don't stop on unhandled errors. They may happen when, for example, a module uses asyncio.create_task ([`3584f22`](https://github.com/tm-a-t/TGPy/commit/3584f223064902f8238f35715219289b6a16ea13)) + ## v0.7.0 (2023-02-05) ### Feature * Update telethon (new markdown parser, html parser fixes) ([`43dd76f`](https://github.com/tm-a-t/TGPy/commit/43dd76f0953e6ba2e77e9b5bc25f2748a36967ee)) diff --git a/pyproject.toml b/pyproject.toml index cadd914..985bd6c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "tgpy" -version = "0.7.0" +version = "0.8.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 94479b5..d0d8891 100644 --- a/tgpy/version.py +++ b/tgpy/version.py @@ -1,3 +1,3 @@ -__version__ = '0.7.0' +__version__ = '0.8.0' IS_DEV_BUILD = True COMMIT_HASH = None