From 2e0248798013d13b13a2fa9125b6d9b371ce379b Mon Sep 17 00:00:00 2001 From: ikaroskun Date: Mon, 21 Nov 2022 15:35:24 +0800 Subject: [PATCH] =?UTF-8?q?Bump=20version:=200.7.9=20=E2=86=92=200.8.0?= 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 a7535c0..4010376 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.7.9 +current_version = 0.8.0 commit = True tag = True diff --git a/pyproject.toml b/pyproject.toml index 9991bcd..d3227f2 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "python-twitter-v2" -version = "0.7.9" +version = "0.8.0" description = "A simple Python wrapper for Twitter API v2 ✨ 🍰 ✨" authors = ["ikaroskun "] license = "MIT" diff --git a/pytwitter/__init__.py b/pytwitter/__init__.py index 4f0d8ee..190eacd 100644 --- a/pytwitter/__init__.py +++ b/pytwitter/__init__.py @@ -1,4 +1,4 @@ -__version__ = "0.7.9" +__version__ = "0.8.0" from .api import Api from .streaming import StreamApi