From 55b555f65bb7c1943a7fee694ebb8b73cd1c0e7d Mon Sep 17 00:00:00 2001 From: github-actions Date: Mon, 6 May 2024 20:02:31 +0000 Subject: [PATCH] chore(release): v0.15.1 [skip ci] --- CHANGELOG.md | 8 ++++++++ pyproject.toml | 2 +- tgpy/version.py | 2 +- 3 files changed, 10 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2d12389..78d7e6f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,14 @@ +## v0.15.1 (2024-05-06) + +### Fix + +* Config is no longer erased when it fails to save. Also, the config is saved synchronously now ([`df539a3`](https://github.com/tm-a-t/TGPy/commit/df539a3dd32d73528e9800e2efe7b2099a5aa4a4)) +* Restart now works correctly when tgpy is not in PYTHONPATH (e.g. in a container) ([`16d3830`](https://github.com/tm-a-t/TGPy/commit/16d383079b1bd48dabad8c7c562e5835f595d915)) +* The correct data directory is now used when TGPY_DATA is set to a relative path and restart is called ([`f483d6c`](https://github.com/tm-a-t/TGPy/commit/f483d6c1e9b0c1bc0f79f0a31f477637d163d696)) + ## v0.15.0 (2024-04-28) ### Feature diff --git a/pyproject.toml b/pyproject.toml index 8974c85..e2e18f0 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "tgpy" -version = "0.15.0" +version = "0.15.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 c6673a2..61ed559 100644 --- a/tgpy/version.py +++ b/tgpy/version.py @@ -1,3 +1,3 @@ -__version__ = '0.15.0' +__version__ = '0.15.1' IS_DEV_BUILD = True COMMIT_HASH = None