From 65659a29cf5a079842e61a63d57fa24474288998 Mon Sep 17 00:00:00 2001 From: Lysandre Date: Wed, 6 Oct 2021 12:48:25 -0400 Subject: [PATCH] Release v4.11.3 --- docs/source/conf.py | 3 ++- setup.py | 2 +- src/transformers/__init__.py | 2 +- 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/docs/source/conf.py b/docs/source/conf.py index 42ceb4304299e2..5744c9b8dddfd0 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -27,7 +27,8 @@ # The short X.Y version version = "" # The full version, including alpha/beta/rc tags -release = "4.11.2" +release = "4.11.3" + diff --git a/setup.py b/setup.py index 4e180960636396..5dbb39877625b4 100644 --- a/setup.py +++ b/setup.py @@ -344,7 +344,7 @@ def run(self): setup( name="transformers", - version="4.11.2", # expected format is one of x.y.z.dev0, or x.y.z.rc1 or x.y.z (no to dashes, yes to dots) + version="4.11.3", # expected format is one of x.y.z.dev0, or x.y.z.rc1 or x.y.z (no to dashes, yes to dots) author="Thomas Wolf, Lysandre Debut, Victor Sanh, Julien Chaumond, Sam Shleifer, Patrick von Platen, Sylvain Gugger, Suraj Patil, Stas Bekman, Google AI Language Team Authors, Open AI team Authors, Facebook AI Authors, Carnegie Mellon University Authors", author_email="thomas@huggingface.co", description="State-of-the-art Natural Language Processing for TensorFlow 2.0 and PyTorch", diff --git a/src/transformers/__init__.py b/src/transformers/__init__.py index 8d2e515d4e08a2..31486ae4c931f5 100755 --- a/src/transformers/__init__.py +++ b/src/transformers/__init__.py @@ -22,7 +22,7 @@ # to defer the actual importing for when the objects are requested. This way `import transformers` provides the names # in the namespace without actually importing anything (and especially none of the backends). -__version__ = "4.11.2" +__version__ = "4.11.3" # Work around to update TensorFlow's absl.logging threshold which alters the # default Python logging output behavior when present.