From 1c300d898367d21c840798c375129ae7f3448845 Mon Sep 17 00:00:00 2001 From: Dirk Groeneveld Date: Tue, 26 Jan 2021 14:58:26 -0800 Subject: [PATCH] Prepare for release v1.3.1 --- CHANGELOG.md | 4 ++-- allennlp_models/version.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3441d7171..52dcfe7c6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,7 +5,7 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). -## Unreleased +## [v1.3.1](https://github.com/allenai/allennlp-models/releases/tag/v1.3.1) - 2021-01-26 ### Removed @@ -26,7 +26,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Fixed BART. This implementation had some major bugs in it that caused poor performance during prediction. -## [v1.3.0](https://github.com/allenai/allennlp-models/releases/tag/v1.2.2) - 2020-12-15 +## [v1.3.0](https://github.com/allenai/allennlp-models/releases/tag/v1.3.0) - 2020-12-15 ### Fixed diff --git a/allennlp_models/version.py b/allennlp_models/version.py index 8a6047153..72e4fa1c4 100644 --- a/allennlp_models/version.py +++ b/allennlp_models/version.py @@ -2,7 +2,7 @@ _MAJOR = "1" _MINOR = "3" -_PATCH = "0" +_PATCH = "1" # This is mainly for nightly builds which have the suffix ".dev$DATE". See # https://semver.org/#is-v123-a-semantic-version for the semantics. _SUFFIX = os.environ.get("ALLENNLP_MODELS_VERSION_SUFFIX", "")