-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bump version to 0.5.10.7 and fix __drop_duplicates__ method.
Updated project version in setup.cfg, pyproject.toml, and __init__.py files. Fixed a bug in the __drop_duplicates__ method by using a copy of the contacts list and handling potential ValueError exceptions during removal.
- Loading branch information
Showing
4 changed files
with
8 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,7 +7,7 @@ build-backend = "setuptools.build_meta" | |
|
||
[project] | ||
name = "SignalCliAPi" | ||
version = "0.5.10.6" | ||
version = "0.5.10.7" | ||
authors = [ | ||
{ name="Peter Nearing", email="[email protected]" } | ||
] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[metadata] | ||
name = SignalCliApi | ||
version = 0.5.10.6 | ||
version = 0.5.10.7 | ||
author = Peter Nearing | ||
author_email = [email protected] | ||
description = A python interface to the signal-cli found at https://github.com/AsamK/signal-cli | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
File: __init__.py | ||
Description: A python3 interface to signal-cli. | ||
""" | ||
__version__: str = '0.5.10.6' | ||
__version__: str = '0.5.10.7' | ||
__author__: str = 'Peter Nearing' | ||
__email__: str = '[email protected]' | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters