From c7f2162cdab3a2a6ea5ac8d2b76756125662dd8e Mon Sep 17 00:00:00 2001 From: ikaroskun Date: Mon, 9 Jan 2023 17:08:29 +0800 Subject: [PATCH] =?UTF-8?q?Bump=20version:=200.8.0=20=E2=86=92=200.8.1?= 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 4010376..8725532 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.8.0 +current_version = 0.8.1 commit = True tag = True diff --git a/pyproject.toml b/pyproject.toml index d3227f2..9665bae 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "python-twitter-v2" -version = "0.8.0" +version = "0.8.1" description = "A simple Python wrapper for Twitter API v2 ✨ 🍰 ✨" authors = ["ikaroskun "] license = "MIT" diff --git a/pytwitter/__init__.py b/pytwitter/__init__.py index 190eacd..4342d37 100644 --- a/pytwitter/__init__.py +++ b/pytwitter/__init__.py @@ -1,4 +1,4 @@ -__version__ = "0.8.0" +__version__ = "0.8.1" from .api import Api from .streaming import StreamApi