From 0dc554f975a0130a79a9b43a2cad7a52ed579d7f Mon Sep 17 00:00:00 2001 From: Dirk Groeneveld Date: Tue, 18 Oct 2022 16:31:00 -0700 Subject: [PATCH] Prepare for release v2.10.1 --- CHANGELOG.md | 8 +++++++- CITATION.cff | 2 +- allennlp/version.py | 2 +- 3 files changed, 9 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d31a4df966e..494c18fafc2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,7 +5,13 @@ 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.10.1](https://github.com/allenai/allennlp/releases/tag/v2.10.1) - 2022-10-18 + +### Fixed + +- Updated dependencies + ## [v2.10.0](https://github.com/allenai/allennlp/releases/tag/v2.10.0) - 2022-07-14 diff --git a/CITATION.cff b/CITATION.cff index 4ddda96e6b3..6cdd58f3014 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.10.0" +version: "2.10.1" doi: "10.18653/v1/W18-2501" ... diff --git a/allennlp/version.py b/allennlp/version.py index f370151a9c3..130a310af5e 100644 --- a/allennlp/version.py +++ b/allennlp/version.py @@ -4,7 +4,7 @@ _MINOR = "10" # 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", "")