From 636f5a610f0e0b9a1e056fc72b688720c114403b Mon Sep 17 00:00:00 2001 From: Joshua Bronson Date: Sun, 18 Feb 2024 13:59:47 -0500 Subject: [PATCH] Prepare for 0.23.1 release. --- CHANGELOG.rst | 4 ++-- bidict/metadata.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 06bcd09f..38127263 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -23,8 +23,8 @@ please consider sponsoring bidict on GitHub.` Click the "Watch" dropdown, choose "Custom", and then choose "Releases". -0.23.1 (not yet released) -------------------------- +0.23.1 (2024-02-18) +------------------- Fix a regression in 0.23.0 that could defeat type inference of a bidict's key type and value type when running in Python 3.8 or 3.9. diff --git a/bidict/metadata.py b/bidict/metadata.py index f37a16df..30ad836b 100644 --- a/bidict/metadata.py +++ b/bidict/metadata.py @@ -6,7 +6,7 @@ """Define bidict package metadata.""" -__version__ = '0.23.1.dev0' +__version__ = '0.23.1' __author__ = {'name': 'Joshua Bronson', 'email': 'jabronson@gmail.com'} __copyright__ = '© 2009-2024 Joshua Bronson' __description__ = 'The bidirectional mapping library for Python.'