From 647d7be7cb1328ea69340d3b689693220cd5762f Mon Sep 17 00:00:00 2001 From: asolino Date: Wed, 25 Sep 2019 14:20:16 -0300 Subject: [PATCH] Tagging new release - It'll just last a few minutes till we come back to -dev :P --- MANIFEST.in | 1 - impacket/version.py | 2 +- setup.py | 2 +- 3 files changed, 2 insertions(+), 3 deletions(-) diff --git a/MANIFEST.in b/MANIFEST.in index 3e4c24e361..07649b35ba 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -2,7 +2,6 @@ include MANIFEST.in include LICENSE include ChangeLog include requirements.txt -include requirements_examples.txt include tox.ini recursive-include examples tests *.txt *.py recursive-include tests * diff --git a/impacket/version.py b/impacket/version.py index 7867b9e208..1f2cbe5c1f 100644 --- a/impacket/version.py +++ b/impacket/version.py @@ -6,6 +6,6 @@ # VER_MAJOR = "0" -VER_MINOR = "9.20-dev" +VER_MINOR = "9.20" BANNER = "Impacket v%s.%s - Copyright 2019 SecureAuth Corporation\n" % (VER_MAJOR,VER_MINOR) diff --git a/setup.py b/setup.py index 21ade5568f..a1e6c9c6c6 100644 --- a/setup.py +++ b/setup.py @@ -18,7 +18,7 @@ def read(fname): return open(os.path.join(os.path.dirname(__file__), fname)).read() setup(name = PACKAGE_NAME, - version = "0.9.20-dev", + version = "0.9.20", description = "Network protocols Constructors and Dissectors", url = "https://www.secureauth.com/labs/open-source-tools/impacket", author = "SecureAuth Corporation",