diff --git a/CHANGELOG.md b/CHANGELOG.md index e068a9d..1efb71a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,16 @@ +## v0.14.0 (2024-03-09) + +### Feature + +* **docker:** Run specified commands on container creation. This feature can be used for example to persist installed packages between updates ([`456f503`](https://github.com/tm-a-t/TGPy/commit/456f5035ef8f0900750acee2a901cfdcea2e28b6)) + +### Fix + +* Tgpy error when editing MessageService, e.g. when deleting all messages in pm or beating your high score in games ([`5d6fb5e`](https://github.com/tm-a-t/TGPy/commit/5d6fb5e9f0b6556163c90c327a4d2ac6afe62b96)) + ## v0.13.2 (2023-12-10) ### Fix diff --git a/pyproject.toml b/pyproject.toml index 527b7a1..0369ccf 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "tgpy" -version = "0.13.2" +version = "0.14.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 dc4f09e..cfe2f23 100644 --- a/tgpy/version.py +++ b/tgpy/version.py @@ -1,3 +1,3 @@ -__version__ = '0.13.2' +__version__ = '0.14.0' IS_DEV_BUILD = True COMMIT_HASH = None