From 14b25d7b9833cc7ece50df191d1cb0fcf5cbfb0f Mon Sep 17 00:00:00 2001 From: Romain Picard Date: Sun, 5 Feb 2023 15:32:36 +0100 Subject: [PATCH] =?UTF-8?q?Bump=20version:=202.0.0=20=E2=86=92=202.0.1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- cyclotron/__init__.py | 2 +- docs/conf.py | 2 +- pyproject.toml | 2 +- setup.cfg | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/cyclotron/__init__.py b/cyclotron/__init__.py index b2a3ecc..97b3d30 100644 --- a/cyclotron/__init__.py +++ b/cyclotron/__init__.py @@ -2,7 +2,7 @@ __author__ = """Romain Picard""" __email__ = 'romain.picard@oakbits.com' -__version__ = '2.0.0' +__version__ = '2.0.1' from . import backpressure diff --git a/docs/conf.py b/docs/conf.py index a5856f5..3e712b5 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -26,7 +26,7 @@ # The short X.Y version version = '' # The full version, including alpha/beta/rc tags -release = '2.0.0' +release = '2.0.1' # -- General configuration --------------------------------------------------- diff --git a/pyproject.toml b/pyproject.toml index cb3552b..e367228 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "cyclotron" -version = "2.0.0" +version = "2.0.1" description = "A reactive stream cycle implementation in python" readme = "README.rst" requires-python = ">=3.7" diff --git a/setup.cfg b/setup.cfg index ed9a4be..d26ebd7 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 2.0.0 +current_version = 2.0.1 commit = True tag = True