diff --git a/docs/conf.py b/docs/conf.py index 0df8d56..6a7ca33 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 = '0.0.0' +release = '1.0.0' # -- General configuration --------------------------------------------------- diff --git a/rxray/__init__.py b/rxray/__init__.py index abdf359..16e0788 100644 --- a/rxray/__init__.py +++ b/rxray/__init__.py @@ -1,5 +1,5 @@ __author__ = """Romain Picard""" __email__ = 'romain.picard@oakbits.com' -__version__ = '0.0.0' +__version__ = '1.0.0' from .ray import distribute, round_robin, partition_by_key \ No newline at end of file diff --git a/setup.cfg b/setup.cfg index 9c9ef32..cc29ea6 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.0.0 +current_version = 1.0.0 commit = True tag = True diff --git a/setup.py b/setup.py index 8d63973..3ec1336 100644 --- a/setup.py +++ b/setup.py @@ -22,7 +22,7 @@ setup( name="rxray", - version='0.0.0', + version='1.0.0', url='https://github.com/maki-nage/rxray.git', license='MIT', description="RxPY operators to distribute computations with ray",