From dcc9cdc763a92bdd078128b760399a85449faea5 Mon Sep 17 00:00:00 2001 From: epwalsh Date: Tue, 8 Sep 2020 10:51:09 -0700 Subject: [PATCH] Prepare for release v1.1.0 --- CHANGELOG.md | 2 ++ allennlp/version.py | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1d6651a79eb..272571dde16 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## Unreleased +## [v1.1.0](https://github.com/allenai/allennlp/releases/tag/v1.1.0) - 2020-09-08 + ### Fixed - Fixed handling of some edge cases when constructing classes with `FromParams` where the class diff --git a/allennlp/version.py b/allennlp/version.py index d681c220d67..b30d9bf5403 100644 --- a/allennlp/version.py +++ b/allennlp/version.py @@ -4,7 +4,7 @@ _MINOR = "1" # On master and in a nightly release the patch should be one ahead of the last # released build. -_PATCH = "0rc4" +_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_VERSION_SUFFIX", "")