Skip to content

Commit

Permalink
Merge branch 'fortra:master' into main
Browse files Browse the repository at this point in the history
  • Loading branch information
GeisericII authored Sep 18, 2024
2 parents 122a9af + 65b774d commit ac790f2
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down Expand Up @@ -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",
Expand Down

0 comments on commit ac790f2

Please sign in to comment.