From 2ddd5bc525583c0cd431b74b3c7fd7988073f7cd Mon Sep 17 00:00:00 2001 From: TJ Porter Date: Tue, 11 Jul 2023 00:25:00 -0500 Subject: [PATCH] Release pyVoIP v1.6.5 --- docs/conf.py | 2 +- pyVoIP/__init__.py | 2 +- setup.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/conf.py b/docs/conf.py index efc4ec1..63b0ffb 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -24,7 +24,7 @@ author = 'Tayler J Porter' # The full version, including alpha/beta/rc tags -release = '1.6.5-rc.1' +release = '1.6.5' master_doc = 'index' diff --git a/pyVoIP/__init__.py b/pyVoIP/__init__.py index 7f956be..334d214 100644 --- a/pyVoIP/__init__.py +++ b/pyVoIP/__init__.py @@ -1,6 +1,6 @@ __all__ = ["SIP", "RTP", "VoIP"] -version_info = (1, 6, "5-rc.1") +version_info = (1, 6, "5") __version__ = ".".join([str(x) for x in version_info]) diff --git a/setup.py b/setup.py index e2c1022..697827d 100644 --- a/setup.py +++ b/setup.py @@ -7,7 +7,7 @@ setup( name="pyVoIP", - version="1.6.5-rc.1", + version="1.6.5", description="PyVoIP is a pure python VoIP/SIP/RTP library.", long_description=long_description, long_description_content_type="text/markdown",