Skip to content

Commit 765cb1f

Browse files
tayler6000SEIDO-JP
andcommitted
Release pyVoIP v1.6.3
[FIX] Fixed missing recvLock.release() in invite. Fixed #94 Co-authored-by: SEIDO-JP <[email protected]>
1 parent 87e8d50 commit 765cb1f

File tree

4 files changed

+5
-4
lines changed

4 files changed

+5
-4
lines changed

docs/conf.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,11 @@
2020
# -- Project information -----------------------------------------------------
2121

2222
project = 'pyVoIP'
23-
copyright = '2022, Tayler Porter'
23+
copyright = '2023, Tayler Porter'
2424
author = 'Tayler J Porter'
2525

2626
# The full version, including alpha/beta/rc tags
27-
release = '1.6.2'
27+
release = '1.6.3'
2828

2929
master_doc = 'index'
3030

pyVoIP/SIP.py

+1
Original file line numberDiff line numberDiff line change
@@ -1602,6 +1602,7 @@ def invite(
16021602
if response.status == SIPStatus(100) or response.status == SIPStatus(
16031603
180
16041604
):
1605+
self.recvLock.release()
16051606
return SIPMessage(invite.encode("utf8")), call_id, sess_id
16061607
debug(f"Received Response: {response.summary()}")
16071608
ack = self.genAck(response)

pyVoIP/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
__all__ = ["SIP", "RTP", "VoIP"]
22

3-
version_info = (1, 6, 2)
3+
version_info = (1, 6, 3)
44

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

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
setup(
99
name="pyVoIP",
10-
version="1.6.2",
10+
version="1.6.3",
1111
description="PyVoIP is a pure python VoIP/SIP/RTP library.",
1212
long_description=long_description,
1313
long_description_content_type="text/markdown",

0 commit comments

Comments
 (0)