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",