Skip to content

Commit

Permalink
v0.3.2 — Minor fix for pydantic 1.10
Browse files Browse the repository at this point in the history
- Overload `Password.__eq__` so that instances continue to compare equal to `pydantic.SecretStr` instances even under pydantic 1.10
  • Loading branch information
jwodder committed Sep 3, 2022
1 parent b5cf71a commit 9acc0f0
Show file tree
Hide file tree
Showing 3 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.3.2 (in development)
-----------------------
v0.3.2 (2022-09-03)
-------------------
- Overload `Password.__eq__` so that instances continue to compare equal to
`pydantic.SecretStr` instances even under pydantic 1.10

Expand Down
4 changes: 2 additions & 2 deletions docs/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
Changelog
=========

v0.3.2 (in development)
-----------------------
v0.3.2 (2022-09-03)
-------------------
- Overload ``Password.__eq__`` so that instances continue to compare equal to
``pydantic.SecretStr`` instances even under pydantic 1.10

Expand Down
2 changes: 1 addition & 1 deletion src/outgoing/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
more information.
"""

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

0 comments on commit 9acc0f0

Please sign in to comment.