From a2ac2efdf0c8ad881ce9b379737464abf1a7d3c3 Mon Sep 17 00:00:00 2001 From: Romain Picard Date: Sat, 5 Feb 2022 22:38:33 +0100 Subject: [PATCH] =?UTF-8?q?Bump=20version:=202.0.0=20=E2=86=92=203.0.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- distogram/__init__.py | 2 +- docs/conf.py | 2 +- setup.cfg | 3 +-- setup.py | 2 +- 4 files changed, 4 insertions(+), 5 deletions(-) diff --git a/distogram/__init__.py b/distogram/__init__.py index 70b962f..ee475a8 100644 --- a/distogram/__init__.py +++ b/distogram/__init__.py @@ -1,6 +1,6 @@ __author__ = """Romain Picard""" __email__ = 'romain.picard@oakbits.com' -__version__ = '2.0.0' +__version__ = '3.0.0' import math from bisect import bisect_left diff --git a/docs/conf.py b/docs/conf.py index 5435855..56e224c 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -27,7 +27,7 @@ # The short X.Y version version = '' # The full version, including alpha/beta/rc tags -release = '2.0.0' +release = '3.0.0' # -- General configuration --------------------------------------------------- diff --git a/setup.cfg b/setup.cfg index 7906361..677742e 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 2.0.0 +current_version = 3.0.0 commit = True tag = True @@ -22,4 +22,3 @@ universal = 1 exclude = docs [aliases] - diff --git a/setup.py b/setup.py index bf23b90..ae60c09 100644 --- a/setup.py +++ b/setup.py @@ -23,7 +23,7 @@ setup( name="distogram", - version='2.0.0', + version='3.0.0', url='https://github.com/maki-nage/distogram.git', license='MIT', description="A library to compute histograms on distributed environments, on streaming data",