From 3aedac976e942bfb1ef1b8e2b207af7803c7ecb0 Mon Sep 17 00:00:00 2001 From: Akshita Bhagia Date: Thu, 20 Aug 2020 14:43:39 -0400 Subject: [PATCH] Prepare for release v1.1.0rc4 --- CHANGELOG.md | 2 ++ allennlp/version.py | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4d24d3b4dfc..16039f822bf 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.0rc4](https://github.com/allenai/allennlp/releases/tag/v1.1.0rc4) - 2020-08-20 + ### Added - Added a workflow to GitHub Actions that will automatically close unassigned stale issues and diff --git a/allennlp/version.py b/allennlp/version.py index 56640f74e26..d681c220d67 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 = "0rc3" +_PATCH = "0rc4" # 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", "")