Skip to content

Commit

Permalink
v0.5.0 — Adjust permute() types; packaging updates
Browse files Browse the repository at this point in the history
- 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
  • Loading branch information
jwodder committed Dec 1, 2024
1 parent 8686ea4 commit d2c58ef
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
v0.5.0 (in development)
-----------------------
v0.5.0 (2024-12-01)
-------------------
- Support Python 3.11, 3.12, and 3.13
- The `permute()` method now accepts iterables of any element type and returns
a list
a list instead of a tuple
- Migrated from setuptools to hatch
- Drop support for Python 3.7

Expand Down
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
The MIT License (MIT)

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

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

project = "permutation"
author = "John T. Wodder II"
copyright = "2017-2022 John T. Wodder II" # noqa: A001
copyright = "2017-2024 John T. Wodder II" # noqa: A001

extensions = [
"autoclasstoc",
Expand Down
2 changes: 1 addition & 1 deletion src/permutation/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
import re
from typing import Any, List, Optional, TypeVar, cast

__version__ = "0.5.0.dev1"
__version__ = "0.5.0"
__author__ = "John Thorvald Wodder II"
__author_email__ = "[email protected]"
__license__ = "MIT"
Expand Down

0 comments on commit d2c58ef

Please sign in to comment.