From 53269f8a63bd462554e6199ebdc1307eedd01485 Mon Sep 17 00:00:00 2001 From: github-actions Date: Sun, 5 Feb 2023 14:47:48 +0000 Subject: [PATCH] chore(release): v0.7.0 [skip ci] --- CHANGELOG.md | 10 ++++++++++ pyproject.toml | 2 +- tgpy/version.py | 2 +- 3 files changed, 12 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9a71753..11e69c9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,16 @@ +## 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)) +* Update dependencies (layer 152) ([`234dc86`](https://github.com/tm-a-t/TGPy/commit/234dc86399c8545b07f55c1cddbcfbabcac2c372)) + +### Fix +* Handle entities properly when editing "//" message ([`6d989dc`](https://github.com/tm-a-t/TGPy/commit/6d989dc5349e026338857115d93f5c532f760578)) +* Specify parse_mode in error handler to support markdown global parse mode ([`60cd81b`](https://github.com/tm-a-t/TGPy/commit/60cd81b9ca5cbb85ed72808e6ce3954bee455c3a)) +* Use message.raw_text instead of message.text to detect // ([`a85b1c8`](https://github.com/tm-a-t/TGPy/commit/a85b1c834135f2b7c251ff8482afbab93f73002e)) + ## 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)) diff --git a/pyproject.toml b/pyproject.toml index 9e9a4b2..cadd914 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "tgpy" -version = "0.6.2" +version = "0.7.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 571b549..94479b5 100644 --- a/tgpy/version.py +++ b/tgpy/version.py @@ -1,3 +1,3 @@ -__version__ = '0.6.2' +__version__ = '0.7.0' IS_DEV_BUILD = True COMMIT_HASH = None