Skip to content

Commit d2c58ef

Browse files
committed
v0.5.0 — Adjust permute() types; packaging updates
- Support Python 3.11, 3.12, and 3.13 - The `permute()` method now accepts iterables of any element type and returns a list instead of a tuple - Migrated from setuptools to hatch - Drop support for Python 3.7
1 parent 8686ea4 commit d2c58ef

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

CHANGELOG.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
v0.5.0 (in development)
2-
-----------------------
1+
v0.5.0 (2024-12-01)
2+
-------------------
33
- Support Python 3.11, 3.12, and 3.13
44
- The `permute()` method now accepts iterables of any element type and returns
5-
a list
5+
a list instead of a tuple
66
- Migrated from setuptools to hatch
77
- Drop support for Python 3.7
88

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
The MIT License (MIT)
22

3-
Copyright (c) 2017-2022 John Thorvald Wodder II and contributors
3+
Copyright (c) 2017-2024 John Thorvald Wodder II and contributors
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
project = "permutation"
66
author = "John T. Wodder II"
7-
copyright = "2017-2022 John T. Wodder II" # noqa: A001
7+
copyright = "2017-2024 John T. Wodder II" # noqa: A001
88

99
extensions = [
1010
"autoclasstoc",

src/permutation/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
import re
2222
from typing import Any, List, Optional, TypeVar, cast
2323

24-
__version__ = "0.5.0.dev1"
24+
__version__ = "0.5.0"
2525
__author__ = "John Thorvald Wodder II"
2626
__author_email__ = "[email protected]"
2727
__license__ = "MIT"

0 commit comments

Comments
 (0)