From 6c2aaef6708b45d356180454add5600e2d686500 Mon Sep 17 00:00:00 2001 From: TJ Porter Date: Wed, 17 Jan 2024 01:17:52 -0600 Subject: [PATCH] Release pyVoIP v1.6.8 --- docs/conf.py | 4 ++-- pyVoIP/__init__.py | 2 +- setup.py | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/conf.py b/docs/conf.py index 840f8f5..0f1d839 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -20,11 +20,11 @@ # -- Project information ----------------------------------------------------- project = 'pyVoIP' -copyright = '2023, Tayler Porter' +copyright = '2024, Tayler Porter' author = 'Tayler J Porter' # The full version, including alpha/beta/rc tags -release = '1.6.7' +release = '1.6.8' master_doc = 'index' diff --git a/pyVoIP/__init__.py b/pyVoIP/__init__.py index ce3adbd..77c55d5 100644 --- a/pyVoIP/__init__.py +++ b/pyVoIP/__init__.py @@ -1,6 +1,6 @@ __all__ = ["SIP", "RTP", "VoIP"] -version_info = (1, 6, "7") +version_info = (1, 6, "8") __version__ = ".".join([str(x) for x in version_info]) diff --git a/setup.py b/setup.py index d86ff16..bb5d58e 100644 --- a/setup.py +++ b/setup.py @@ -7,7 +7,7 @@ setup( name="pyVoIP", - version="1.6.7", + version="1.6.8", description="PyVoIP is a pure python VoIP/SIP/RTP library.", long_description=long_description, long_description_content_type="text/markdown",