Skip to content

Commit 65b774d

Browse files
Update setup.py
1 parent db53482 commit 65b774d

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

setup.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,9 @@
2222
PACKAGE_NAME = "impacket"
2323

2424
VER_MAJOR = 0
25-
VER_MINOR = 12
25+
VER_MINOR = 13
2626
VER_MAINT = 0
27-
VER_PREREL = ""
27+
VER_PREREL = "dev"
2828
try:
2929
if call(["git", "branch"], stderr=STDOUT, stdout=open(os.devnull, 'w')) == 0:
3030
p = Popen("git log -1 --format=%cd --date=format:%Y%m%d.%H%M%S", shell=True, stdin=PIPE, stderr=PIPE, stdout=PIPE)
@@ -53,8 +53,8 @@ def read(fname):
5353

5454
setup(
5555
name=PACKAGE_NAME,
56-
version="{}.{}.{}".format (VER_MAJOR, VER_MINOR, VER_MAINT),
57-
#version="{}.{}.{}.{}{}".format(VER_MAJOR, VER_MINOR, VER_MAINT,VER_PREREL,VER_LOCAL),
56+
#version="{}.{}.{}".format (VER_MAJOR, VER_MINOR, VER_MAINT),
57+
version="{}.{}.{}.{}{}".format(VER_MAJOR, VER_MINOR, VER_MAINT,VER_PREREL,VER_LOCAL),
5858
description="Network protocols Constructors and Dissectors",
5959
url="https://www.coresecurity.com",
6060
author="SecureAuth Corporation",

0 commit comments

Comments
 (0)