From 19ec4a782c9626766498e86049fdecf7c318ad08 Mon Sep 17 00:00:00 2001 From: Sylvain Gugger Date: Mon, 27 Sep 2021 11:04:29 -0400 Subject: [PATCH] Release v0.5.1 --- 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 e151e55dd75..2545c95c880 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -25,7 +25,7 @@ author = "huggingface" # The short X.Y version -version = "0.6.0.dev0" +version = "0.5.1" # -- General configuration --------------------------------------------------- diff --git a/setup.py b/setup.py index f06ab3c9939..446dbd814ea 100644 --- a/setup.py +++ b/setup.py @@ -37,7 +37,7 @@ setup( name="accelerate", - version="0.6.0.dev0", + version="0.5.1", 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 e0b96cd10b9..07ecf892a90 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.6.0.dev0" +__version__ = "0.5.1" from .accelerator import Accelerator from .kwargs_handlers import DistributedDataParallelKwargs, GradScalerKwargs