From f504f4578a32f71b46c5c17b54aeb54479d17f98 Mon Sep 17 00:00:00 2001 From: TJ Porter Date: Wed, 7 Jun 2023 09:08:38 -0500 Subject: [PATCH] Release pyVoIP v1.6.5-rc.1 Fixed #55 Fixed #96 Fixed #146 Co-authored-by: SEIDO-JP <100431683+SEIDO-JP@users.noreply.github.com> --- 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 b93c397..efc4ec1 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.4' +release = '1.6.5-rc.1' master_doc = 'index' diff --git a/pyVoIP/__init__.py b/pyVoIP/__init__.py index 376150f..7f956be 100644 --- a/pyVoIP/__init__.py +++ b/pyVoIP/__init__.py @@ -1,6 +1,6 @@ __all__ = ["SIP", "RTP", "VoIP"] -version_info = (1, 6, 4) +version_info = (1, 6, "5-rc.1") __version__ = ".".join([str(x) for x in version_info]) diff --git a/setup.py b/setup.py index 1e2d8b7..e2c1022 100644 --- a/setup.py +++ b/setup.py @@ -7,7 +7,7 @@ setup( name="pyVoIP", - version="1.6.4", + version="1.6.5-rc.1", description="PyVoIP is a pure python VoIP/SIP/RTP library.", long_description=long_description, long_description_content_type="text/markdown",