From e3a3a20dfea0279bd9b6e987294e420e216c1f06 Mon Sep 17 00:00:00 2001 From: github-actions Date: Fri, 6 Jan 2023 18:11:06 +0000 Subject: [PATCH] chore(release): v0.6.1 [skip ci] --- CHANGELOG.md | 4 ++++ pyproject.toml | 2 +- tgpy/version.py | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index cfd10ba..c43e1bd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ +## 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)) + ## v0.6.0 (2022-11-26) ### Feature * Use MessageEntityPre with language set to 'python' to enable syntax highlighting on supported clients (e.g. WebZ). Closes #24 ([`5de6ded`](https://github.com/tm-a-t/TGPy/commit/5de6ded579c237f0221b6223dfd18254a2ebb1cd)) diff --git a/pyproject.toml b/pyproject.toml index 414b830..3ff02d6 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "tgpy" -version = "0.6.0" +version = "0.6.1" 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 6fedc49..68fd083 100644 --- a/tgpy/version.py +++ b/tgpy/version.py @@ -1,3 +1,3 @@ -__version__ = '0.6.0' +__version__ = '0.6.1' IS_DEV_BUILD = True COMMIT_HASH = None