Skip to content

Commit

Permalink
Release pyVoIP v1.6.3
Browse files Browse the repository at this point in the history
[FIX] Fixed missing recvLock.release() in invite.
Fixed #94

Co-authored-by: SEIDO-JP <100431683+SEIDO-JP@users.noreply.github.com>
  • Loading branch information
tayler6000 and SEIDO-JP committed Jan 16, 2023
1 parent 87e8d50 commit 765cb1f
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 4 deletions.
4 changes: 2 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,11 @@
# -- Project information -----------------------------------------------------

project = 'pyVoIP'
copyright = '2022, Tayler Porter'
copyright = '2023, Tayler Porter'
author = 'Tayler J Porter'

# The full version, including alpha/beta/rc tags
release = '1.6.2'
release = '1.6.3'

master_doc = 'index'

Expand Down
1 change: 1 addition & 0 deletions pyVoIP/SIP.py
Original file line number Diff line number Diff line change
Expand Up @@ -1602,6 +1602,7 @@ def invite(
if response.status == SIPStatus(100) or response.status == SIPStatus(
180
):
self.recvLock.release()
return SIPMessage(invite.encode("utf8")), call_id, sess_id
debug(f"Received Response: {response.summary()}")
ack = self.genAck(response)
Expand Down
2 changes: 1 addition & 1 deletion pyVoIP/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
__all__ = ["SIP", "RTP", "VoIP"]

version_info = (1, 6, 2)
version_info = (1, 6, 3)

__version__ = ".".join([str(x) for x in version_info])

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

setup(
name="pyVoIP",
version="1.6.2",
version="1.6.3",
description="PyVoIP is a pure python VoIP/SIP/RTP library.",
long_description=long_description,
long_description_content_type="text/markdown",
Expand Down

0 comments on commit 765cb1f

Please sign in to comment.