Skip to content

Commit

Permalink
v0.4.0 — Exponentiation
Browse files Browse the repository at this point in the history
- Drop support for Python 3.6
- Add a `__pow__` method (contributed by [@Deric-W](https://github.com/Deric-W))
  • Loading branch information
jwodder committed Oct 21, 2022
1 parent 5f4ff22 commit 16d1140
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
v0.4.0 (in development)
-----------------------
v0.4.0 (2022-10-21)
-------------------
- Drop support for Python 3.6
- Add a `__pow__` method (contributed by
[@Deric-W](https://github.com/Deric-W))
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-2021 John Thorvald Wodder II and contributors
Copyright (c) 2017-2022 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 @@ -2,7 +2,7 @@

project = "permutation"
author = "John T. Wodder II"
copyright = "2017-2021 John T. Wodder II"
copyright = "2017-2022 John T. Wodder II"

extensions = [
"sphinx.ext.autodoc",
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, cast

__version__ = "0.4.0.dev1"
__version__ = "0.4.0"
__author__ = "John Thorvald Wodder II"
__author_email__ = "permutation@varonathe.org"
__license__ = "MIT"
Expand Down

0 comments on commit 16d1140

Please sign in to comment.