diff --git a/CHANGELOG.md b/CHANGELOG.md index 159ef548b..3809a186b 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 +## [v2.1.0](https://github.com/allenai/allennlp-models/releases/tag/v2.1.0) - 2021-02-24 ### Changed diff --git a/allennlp_models/version.py b/allennlp_models/version.py index 72827da03..d6686afa3 100644 --- a/allennlp_models/version.py +++ b/allennlp_models/version.py @@ -1,8 +1,8 @@ import os _MAJOR = "2" -_MINOR = "0" -_PATCH = "1" +_MINOR = "1" +_PATCH = "0" # 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", "")