From 4509454b9956187a77ffad6ee37c97f861e2e17f Mon Sep 17 00:00:00 2001 From: github-actions Date: Mon, 10 Jan 2022 14:36:24 +0000 Subject: [PATCH] chore(release): v0.4.1 [skip ci] --- CHANGELOG.md | 4 ++++ pyproject.toml | 2 +- tgpy/__init__.py | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a6a08ff..e21ca33 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ +## v0.4.1 (2022-01-10) +### Fix +* **code detection:** Ignore messages like "fix: fix" ([`1b73815`](https://github.com/tm-a-t/TGPy/commit/1b73815928fdbdae3eae1202c01b4b53b9906ba4)) + ## v0.4.0 (2022-01-10) ### Feature * Multiple improvements ([`6b9cbda`](https://github.com/tm-a-t/TGPy/commit/6b9cbdaf79b11cd1e5922999f96e9321a2df4051)) diff --git a/pyproject.toml b/pyproject.toml index 72350ce..f37aa3b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "tgpy" -version = "0.4.0" +version = "0.4.1" description = "Run Python code right in your Telegram messages" authors = ["tmat ", "vanutp ", "ntonee "] license = "MIT" diff --git a/tgpy/__init__.py b/tgpy/__init__.py index c1bcd39..7bdfdda 100644 --- a/tgpy/__init__.py +++ b/tgpy/__init__.py @@ -8,7 +8,7 @@ from tgpy.console import console from tgpy.context import Context -__version__ = "0.4.0" +__version__ = "0.4.1" logging.basicConfig( level=logging.INFO, format='%(message)s', datefmt="[%X]", handlers=[RichHandler()]