From 5ecab0ed19a9c5335b54647b2aed2ddd842729f2 Mon Sep 17 00:00:00 2001 From: epwalsh Date: Wed, 9 Mar 2022 13:54:37 -0800 Subject: [PATCH] Prepare for release v2.9.1 --- CHANGELOG.md | 2 ++ CITATION.cff | 2 +- allennlp/version.py | 2 +- 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f46a546d309..9f4e3ca37f5 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 +## [v2.9.1](https://github.com/allenai/allennlp/releases/tag/v2.9.1) - 2022-03-09 + ### Fixed - Updated dependencies, especially around doc creation. diff --git a/CITATION.cff b/CITATION.cff index bd880a75cc2..d2356e0e766 100644 --- a/CITATION.cff +++ b/CITATION.cff @@ -42,6 +42,6 @@ license: "Apache-2.0" message: "If you use this software, please cite it using this metadata." repository-code: "https://github.com/allenai/allennlp" title: "AllenNLP: A Deep Semantic Natural Language Processing Platform" -version: "2.9.0" +version: "2.9.1" doi: "10.18653/v1/W18-2501" ... diff --git a/allennlp/version.py b/allennlp/version.py index 814e960c8b2..81f22c86dce 100644 --- a/allennlp/version.py +++ b/allennlp/version.py @@ -4,7 +4,7 @@ _MINOR = "9" # On main and in a nightly release the patch should be one ahead of the last # released build. -_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_VERSION_SUFFIX", "")