diff --git a/docs/conf.py b/docs/conf.py index 6a3e734..6eb0d2c 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.6-rc.1' +release = '1.6.6' master_doc = 'index' diff --git a/pyVoIP/__init__.py b/pyVoIP/__init__.py index e7973a8..74a6c8f 100644 --- a/pyVoIP/__init__.py +++ b/pyVoIP/__init__.py @@ -1,6 +1,6 @@ __all__ = ["SIP", "RTP", "VoIP"] -version_info = (1, 6, "6-rc.1") +version_info = (1, 6, "6") __version__ = ".".join([str(x) for x in version_info]) diff --git a/setup.py b/setup.py index c5ff081..709238a 100644 --- a/setup.py +++ b/setup.py @@ -7,7 +7,7 @@ setup( name="pyVoIP", - version="1.6.6-rc.1", + version="1.6.6", description="PyVoIP is a pure python VoIP/SIP/RTP library.", long_description=long_description, long_description_content_type="text/markdown",