-
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.
Update version to 0.5.10.1 and enhance contact-seen mechanism
Incremented version to 0.5.10.1 across setup.cfg, pyproject.toml, and __init__.py. Additionally, improved the contact management by marking contacts as seen when they have no last_seen timestamp and modified the __seen__ method to handle None values for time_seen more effectively.
- Loading branch information
Showing
4 changed files
with
12 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" | ||
version = "0.5.10.1" | ||
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 | ||
version = 0.5.10.1 | ||
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' | ||
__version__: str = '0.5.10.1' | ||
__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