File tree 4 files changed +5
-4
lines changed
4 files changed +5
-4
lines changed Original file line number Diff line number Diff line change 20
20
# -- Project information -----------------------------------------------------
21
21
22
22
project = 'pyVoIP'
23
- copyright = '2022 , Tayler Porter'
23
+ copyright = '2023 , Tayler Porter'
24
24
author = 'Tayler J Porter'
25
25
26
26
# The full version, including alpha/beta/rc tags
27
- release = '1.6.2 '
27
+ release = '1.6.3 '
28
28
29
29
master_doc = 'index'
30
30
Original file line number Diff line number Diff line change @@ -1602,6 +1602,7 @@ def invite(
1602
1602
if response .status == SIPStatus (100 ) or response .status == SIPStatus (
1603
1603
180
1604
1604
):
1605
+ self .recvLock .release ()
1605
1606
return SIPMessage (invite .encode ("utf8" )), call_id , sess_id
1606
1607
debug (f"Received Response: { response .summary ()} " )
1607
1608
ack = self .genAck (response )
Original file line number Diff line number Diff line change 1
1
__all__ = ["SIP" , "RTP" , "VoIP" ]
2
2
3
- version_info = (1 , 6 , 2 )
3
+ version_info = (1 , 6 , 3 )
4
4
5
5
__version__ = "." .join ([str (x ) for x in version_info ])
6
6
Original file line number Diff line number Diff line change 7
7
8
8
setup (
9
9
name = "pyVoIP" ,
10
- version = "1.6.2 " ,
10
+ version = "1.6.3 " ,
11
11
description = "PyVoIP is a pure python VoIP/SIP/RTP library." ,
12
12
long_description = long_description ,
13
13
long_description_content_type = "text/markdown" ,
You can’t perform that action at this time.
0 commit comments