Skip to content

Commit

Permalink
Release pyVoIP v2.0.0a1
Browse files Browse the repository at this point in the history
[CHANGE] Changed copyright to 2024
  • Loading branch information
tayler6000 committed Jan 4, 2024
1 parent 5ef1a2d commit b873445
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"

Expand Down
2 changes: 1 addition & 1 deletion pyVoIP/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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])

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down

0 comments on commit b873445

Please sign in to comment.