diff --git a/README.md b/README.md index a9c1715..0b56f4c 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,8 @@ Automatic Evaluation Metric described in the paper [BERTScore: Evaluating Text Generation with BERT](https://arxiv.org/abs/1904.09675) (ICLR 2020). #### News: -- Features to appear in the next version (currently in the master branch): + +- Updated to version 0.3.9 - Support 3 BigBird models - Fix bugs for mBART and T5 - Support 4 mT5 models as requested ([#93](https://github.com/Tiiiger/bert_score/issues/93)) diff --git a/bert_score/__init__.py b/bert_score/__init__.py index 31b9d72..ce9ee9e 100644 --- a/bert_score/__init__.py +++ b/bert_score/__init__.py @@ -1,3 +1,3 @@ -__version__ = "0.3.8" +__version__ = "0.3.9" from .score import * from .scorer import * diff --git a/setup.py b/setup.py index 60aff37..5a72446 100644 --- a/setup.py +++ b/setup.py @@ -3,7 +3,7 @@ setup( name="bert_score", - version='0.3.8', + version='0.3.9', author="Tianyi Zhang*, Varsha Kishore*, Felix Wu*, Kilian Q. Weinberger, and Yoav Artzi", author_email="tzhang@asapp.com", description="PyTorch implementation of BERT score",