Skip to content

Commit

Permalink
Prepare for minor release
Browse files Browse the repository at this point in the history
  • Loading branch information
nvictus committed Jul 1, 2023
1 parent d4cfc14 commit 64c7f40
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 2 deletions.
15 changes: 14 additions & 1 deletion CHANGES
Original file line number Diff line number Diff line change
@@ -1,6 +1,19 @@
Release Notes
=============

1.3.0 (2023-07-01)
++++++++++++++++++

* API changes:
- Added ``popvalue`` method to mirror recent ``topvalue`` addition.
- Added ``default`` argument to ``top`` and support for ``default`` using ``pop`` with PQ semantics, to return when the collection is empty.

* Maintenance:
- Dropped support for Python 2.7, 3.4, and 3.5 (#22).
- Inlined type annotations and removed stub file. Thanks for advice from `@aqeelat <https://github.com/aqeelat>_`.
- Migrate to pyproject.toml


1.2.1 (2023-06-26)
++++++++++++++++++

Expand All @@ -9,7 +22,7 @@ Release Notes

* Maintenance:
- Replaced CI badge.
- Dropped Python 2.7, no longer supported in CI. Next minor release will no longer support Python 2.
- Dropped Python 2.7 from CI, no longer supported there. Next minor release of pqdict will no longer support Python 2.


1.2.0 (2022-10-14)
Expand Down
2 changes: 1 addition & 1 deletion pqdict/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@
)
from warnings import warn

__version__ = "1.3.0-dev"
__version__ = "1.3.0"
__all__ = ["pqdict", "nlargest", "nsmallest"]

DictInputs = Union[Mapping[Any, Any], Iterable[Tuple[Any, Any]]]
Expand Down

0 comments on commit 64c7f40

Please sign in to comment.