From b8390fd0af559b9d9bf8029b3c7848be6ad62b45 Mon Sep 17 00:00:00 2001 From: liukun Date: Tue, 29 Oct 2024 16:01:05 +0800 Subject: [PATCH] =?UTF-8?q?Bump=20version:=200.9.1=20=E2=86=92=200.9.2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .bumpversion.cfg | 2 +- pyproject.toml | 2 +- pytwitter/__init__.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 5b5b226..e6f2e69 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.9.1 +current_version = 0.9.2 commit = True tag = True diff --git a/pyproject.toml b/pyproject.toml index 1ab7baf..00a4d01 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "python-twitter-v2" -version = "0.9.1" +version = "0.9.2" description = "A simple Python wrapper for Twitter API v2 ✨ 🍰 ✨" authors = ["ikaroskun "] license = "MIT" diff --git a/pytwitter/__init__.py b/pytwitter/__init__.py index f8c228b..1199dec 100644 --- a/pytwitter/__init__.py +++ b/pytwitter/__init__.py @@ -1,4 +1,4 @@ -__version__ = "0.9.1" +__version__ = "0.9.2" from .api import Api from .streaming import StreamApi