From 499a5e506aedfd84b6311e3daf4bededba0e729f Mon Sep 17 00:00:00 2001 From: Sylvain Gugger Date: Thu, 15 Apr 2021 11:45:06 -0400 Subject: [PATCH] Release: v0.2.0 --- docs/source/conf.py | 2 +- setup.py | 2 +- src/accelerate/__init__.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/source/conf.py b/docs/source/conf.py index 016feb77fcc..8205147f648 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -25,7 +25,7 @@ author = "huggingface" # The short X.Y version -version = "0.1.0" +version = "0.2.0" # -- General configuration --------------------------------------------------- diff --git a/setup.py b/setup.py index b2700c01591..8cbdcdeaad8 100644 --- a/setup.py +++ b/setup.py @@ -37,7 +37,7 @@ setup( name="accelerate", - version="0.1.0", + version="0.2.0", description="Accelerate", long_description=open("README.md", "r", encoding="utf-8").read(), long_description_content_type="text/markdown", diff --git a/src/accelerate/__init__.py b/src/accelerate/__init__.py index da4f7402ee7..eb86773db00 100644 --- a/src/accelerate/__init__.py +++ b/src/accelerate/__init__.py @@ -2,7 +2,7 @@ # There's no way to ignore "F401 '...' imported but unused" warnings in this # module, but to preserve other warnings. So, don't check this module at all. -__version__ = "0.1.0" +__version__ = "0.2.0" from .accelerator import Accelerator from .kwargs_handlers import DistributedDataParallelKwargs, GradScalerKwargs