From 7f31aecd4ca8c06acff707a925fdbccd5f0a9fe6 Mon Sep 17 00:00:00 2001 From: Nezar Abdennur Date: Mon, 26 Jun 2023 16:05:30 -0400 Subject: [PATCH] Prepare for patch release --- CHANGES | 11 +++++++++++ pqdict/__init__.py | 2 +- 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/CHANGES b/CHANGES index f919c2d..84d5091 100644 --- a/CHANGES +++ b/CHANGES @@ -1,6 +1,17 @@ Release Notes ============= +1.2.1 (2023-06-26) +++++++++++++++++++ + +* Typing: + - Provided typing support (#19) applying stub generated by `@noamraph `_ + +* Maintenance: + - Replaced CI badge. + - Dropped Python 2.7, no longer supported in CI. Next minor release will no longer support Python 2. + + 1.2.0 (2022-10-14) ++++++++++++++++++ diff --git a/pqdict/__init__.py b/pqdict/__init__.py index e79043d..0fe68a6 100644 --- a/pqdict/__init__.py +++ b/pqdict/__init__.py @@ -44,7 +44,7 @@ from operator import lt, gt -__version__ = "1.2.0" +__version__ = "1.2.1" __all__ = ["pqdict", "PQDict", "minpq", "maxpq", "nlargest", "nsmallest"]