From 65b774ded17a79f1041397202852eab0c24cd039 Mon Sep 17 00:00:00 2001 From: adrian manrique <60896207+anadrianmanrique@users.noreply.github.com> Date: Mon, 16 Sep 2024 17:10:21 -0300 Subject: [PATCH] Update setup.py --- setup.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/setup.py b/setup.py index a310b1d678..7e9e7c9f40 100644 --- a/setup.py +++ b/setup.py @@ -22,9 +22,9 @@ PACKAGE_NAME = "impacket" VER_MAJOR = 0 -VER_MINOR = 12 +VER_MINOR = 13 VER_MAINT = 0 -VER_PREREL = "" +VER_PREREL = "dev" 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) @@ -53,8 +53,8 @@ def read(fname): setup( name=PACKAGE_NAME, - version="{}.{}.{}".format (VER_MAJOR, VER_MINOR, VER_MAINT), - #version="{}.{}.{}.{}{}".format(VER_MAJOR, VER_MINOR, VER_MAINT,VER_PREREL,VER_LOCAL), + #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.coresecurity.com", author="SecureAuth Corporation",