From c5d6a2881056e6311d4077ec2d8b1db3373f41a0 Mon Sep 17 00:00:00 2001 From: Lysandre Date: Tue, 16 Mar 2021 15:39:48 -0400 Subject: [PATCH] Release: v4.4.1 --- 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 6027c88b66..fac9500b47 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -26,7 +26,8 @@ author = u'huggingface' # The short X.Y version version = u'' # The full version, including alpha/beta/rc tags -release = u'4.4.0' +release = u'4.4.1' + # Prefix link to point to master, comment this during version release and uncomment below line extlinks = {'prefix_link': ('https://github.com/huggingface/transformers/blob/master/%s', '')} diff --git a/setup.py b/setup.py index c9a80c067d..ca4a554161 100644 --- a/setup.py +++ b/setup.py @@ -278,7 +278,7 @@ install_requires = [ setup( name="transformers", - version="4.4.0", # 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.4.1", # 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, 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 3c8faeb7fb..681c1cdce6 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.4.0" +__version__ = "4.4.1" # Work around to update TensorFlow's absl.logging threshold which alters the # default Python logging output behavior when present.