diff --git a/docs/conf.py b/docs/conf.py index d7122bc..07b45d7 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 = "2.0.0.dev0" +release = "2.0.0a1" master_doc = "index" diff --git a/pyVoIP/__init__.py b/pyVoIP/__init__.py index b3b117e..eed09fe 100644 --- a/pyVoIP/__init__.py +++ b/pyVoIP/__init__.py @@ -2,7 +2,7 @@ __all__ = ["SIP", "RTP", "VoIP"] -version_info = (2, 0, 0, "dev0") +version_info = (2, 0, "0a1") __version__ = ".".join([str(x) for x in version_info]) diff --git a/setup.py b/setup.py index 9a2a9ac..02fd0ee 100644 --- a/setup.py +++ b/setup.py @@ -7,7 +7,7 @@ setup( name="pyVoIP", - version="2.0.0.dev0", + version="2.0.0a1", description="PyVoIP is a pure python VoIP/SIP/RTP library.", long_description=long_description, long_description_content_type="text/markdown",