From 91a4d0b3798bdf50fd5092395af7328b19ca7c6c Mon Sep 17 00:00:00 2001 From: Joshua Bronson Date: Wed, 14 Feb 2024 17:26:41 -0500 Subject: [PATCH] Prepare for 0.23.0 release. --- CHANGELOG.rst | 4 ++-- README.rst | 2 +- bidict/metadata.py | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 5a80ac7c..292223a5 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.0 (not yet released) -------------------------- +0.23.0 (2024-02-14) +------------------- Primarily, this release simplifies bidict by removing minor features that are no longer necessary or that have little to no apparent usage, diff --git a/README.rst b/README.rst index 0e0aa42e..e161e9a0 100644 --- a/README.rst +++ b/README.rst @@ -21,7 +21,7 @@ Status :target: https://bidict.readthedocs.io/en/main/ :alt: Documentation -.. image:: https://github.com/jab/bidict/actions/workflows/test.yml/badge.svg?branch=main +.. image:: https://github.com/jab/bidict/actions/workflows/test.yml/badge.svg :target: https://github.com/jab/bidict/actions/workflows/test.yml?query=branch%3Amain :alt: GitHub Actions CI status diff --git a/bidict/metadata.py b/bidict/metadata.py index 353e39ca..fecb34e9 100644 --- a/bidict/metadata.py +++ b/bidict/metadata.py @@ -6,7 +6,7 @@ """Define bidict package metadata.""" -__version__ = '0.23.0.dev0' +__version__ = '0.23.0' __author__ = {'name': 'Joshua Bronson', 'email': 'jabronson@gmail.com'} __copyright__ = '© 2009-2024 Joshua Bronson' __description__ = 'The bidirectional mapping library for Python.'