From 28e278728d48d9b7de163fc5e504e497fd209ac9 Mon Sep 17 00:00:00 2001 From: patrickvonplaten Date: Fri, 10 Sep 2021 16:12:44 +0200 Subject: [PATCH] Release: 4.10.1 --- docs/source/conf.py | 3 ++- docs/source/index.rst | 11 +++++------ setup.py | 2 +- src/transformers/__init__.py | 2 +- 4 files changed, 9 insertions(+), 9 deletions(-) diff --git a/docs/source/conf.py b/docs/source/conf.py index 9f36e01edc11ae..a0c2c1b6a085a0 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.10.0" +release = "4.10.1" + diff --git a/docs/source/index.rst b/docs/source/index.rst index 82dfcbca2fccce..9d91b907d3626f 100644 --- a/docs/source/index.rst +++ b/docs/source/index.rst @@ -105,9 +105,8 @@ Supported models 3. :doc:`BARThez ` (from École polytechnique) released with the paper `BARThez: a Skilled Pretrained French Sequence-to-Sequence Model `__ by Moussa Kamal Eddine, Antoine J.-P. Tixier, Michalis Vazirgiannis. -4. `BEiT `__ (from Microsoft) released with the paper - `BEiT: BERT Pre-Training of Image Transformers `__ by Hangbo Bao, Li Dong, Furu - Wei. +4. :doc:`BEiT ` (from Microsoft) released with the paper `BEiT: BERT Pre-Training of Image Transformers + `__ by Hangbo Bao, Li Dong, Furu Wei. 5. :doc:`BERT ` (from Google) released with the paper `BERT: Pre-training of Deep Bidirectional Transformers for Language Understanding `__ by Jacob Devlin, Ming-Wei Chang, Kenton Lee and Kristina Toutanova. @@ -264,9 +263,9 @@ Supported models 55. :doc:`SpeechToTextTransformer ` (from Facebook), released together with the paper `fairseq S2T: Fast Speech-to-Text Modeling with fairseq `__ by Changhan Wang, Yun Tang, Xutai Ma, Anne Wu, Dmytro Okhonko, Juan Pino. -56. `Splinter `__ (from Tel Aviv University), - released together with the paper `Few-Shot Question Answering by Pretraining Span Selection - `__ by Ori Ram, Yuval Kirstain, Jonathan Berant, Amir Globerson, Omer Levy. +56. :doc:`Splinter ` (from Tel Aviv University), released together with the paper `Few-Shot + Question Answering by Pretraining Span Selection `__ by Ori Ram, Yuval Kirstain, + Jonathan Berant, Amir Globerson, Omer Levy. 57. :doc:`SqueezeBert ` released with the paper `SqueezeBERT: What can computer vision teach NLP about efficient neural networks? `__ by Forrest N. Iandola, Albert E. Shaw, Ravi Krishna, and Kurt W. Keutzer. diff --git a/setup.py b/setup.py index 5d126591b3ed47..50ee7c05505e73 100644 --- a/setup.py +++ b/setup.py @@ -342,7 +342,7 @@ def run(self): setup( name="transformers", - version="4.10.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.10.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, 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 d7e8c9c2bac79e..1d74984c0c77a5 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.10.0" +__version__ = "4.10.1" # Work around to update TensorFlow's absl.logging threshold which alters the # default Python logging output behavior when present.