Skip to content

Commit

Permalink
Update version to 0.5.11.4 and remove debug print
Browse files Browse the repository at this point in the history
Bump the project version from 0.5.11.3 to 0.5.11.4 in all relevant files. Additionally, remove a debug print statement in the signal_receive_thread.py file.
  • Loading branch information
pnearing committed Sep 14, 2024
1 parent 088165b commit f504956
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "SignalCliAPi"
version = "0.5.11.3"
version = "0.5.11.4"
authors = [
{ name="Peter Nearing", email="[email protected]" }
]
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[metadata]
name = SignalCliApi
version = 0.5.11.3
version = 0.5.11.4
author = Peter Nearing
author_email = [email protected]
description = A python interface to the signal-cli found at https://github.com/AsamK/signal-cli
Expand Down
2 changes: 1 addition & 1 deletion src/signal_cli_api/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
File: __init__.py
Description: A python3 interface to signal-cli.
"""
__version__: str = '0.5.11.3'
__version__: str = '0.5.11.4'
__author__: str = 'Peter Nearing'
__email__: str = '[email protected]'

Expand Down
1 change: 0 additions & 1 deletion src/signal_cli_api/signal_receive_thread.py
Original file line number Diff line number Diff line change
Expand Up @@ -508,7 +508,6 @@ def run(self) -> None:
break
raise e
if response_str is None:
print("\a")
continue
# Delay processing until messages are finished sending:
if self._account.messages.sending:
Expand Down

0 comments on commit f504956

Please sign in to comment.