Skip to content

Commit

Permalink
And going back to dev version
Browse files Browse the repository at this point in the history
  • Loading branch information
0xdeaddood committed Oct 27, 2021
1 parent 265ce17 commit 1dad8f7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@

VER_MAJOR = 0
VER_MINOR = 9
VER_MAINT = 24
VER_PREREL = ""
VER_MAINT = 25
VER_PREREL = "dev1"
try:
if call(["git", "branch"], stderr=STDOUT, stdout=open(os.devnull, 'w')) == 0:
p = Popen("git log -1 --format=%cd --date=format:%Y%m%d.%H%M%S", shell=True, stdin=PIPE, stderr=PIPE, stdout=PIPE)
Expand All @@ -50,7 +50,7 @@ def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()

setup(name = PACKAGE_NAME,
version = "{}.{}.{}".format(VER_MAJOR, VER_MINOR, VER_MAINT),
version = "{}.{}.{}.{}{}".format(VER_MAJOR,VER_MINOR,VER_MAINT,VER_PREREL,VER_LOCAL),
description = "Network protocols Constructors and Dissectors",
url = "https://www.secureauth.com/labs/open-source-tools/impacket",
author = "SecureAuth Corporation",
Expand Down

0 comments on commit 1dad8f7

Please sign in to comment.