From 621fd66fa4adef112ec45cd0c96207f2a6667300 Mon Sep 17 00:00:00 2001 From: asolino Date: Mon, 1 Apr 2019 12:29:42 -0300 Subject: [PATCH] Ready to tag a new release --- README.md | 2 +- impacket/version.py | 2 +- setup.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index fddc5cc6b..70a5c780f 100644 --- a/README.md +++ b/README.md @@ -71,7 +71,7 @@ If you want to run the library test cases you need to do mainly three things: 1. Install and configure a Windows 2012 R2 Domain Controller. * Be sure the RemoteRegistry service is enabled and running. -2. Configure the [dcetest.cfg](https://github.com/SecureAuthCorp/impacket/blob/impacket_0_9_17/tests/SMB_RPC/dcetests.cfg) file with the necessary information +2. Configure the [dcetest.cfg](https://github.com/SecureAuthCorp/impacket/blob/impacket_0_9_19/tests/SMB_RPC/dcetests.cfg) file with the necessary information 3. Install tox (`pip install tox`) Once that's done, you can run `tox` and wait for the results. If all goes well, all test cases should pass. diff --git a/impacket/version.py b/impacket/version.py index 6c48a52a4..36add6001 100644 --- a/impacket/version.py +++ b/impacket/version.py @@ -6,7 +6,7 @@ # VER_MAJOR = "0" -VER_MINOR = "9.19-dev" +VER_MINOR = "9.19" BANNER = "Impacket v%s.%s - Copyright 2019 SecureAuth Corporation\n" % (VER_MAJOR,VER_MINOR) diff --git a/setup.py b/setup.py index 4f55df480..002e5ee82 100644 --- a/setup.py +++ b/setup.py @@ -19,7 +19,7 @@ def read(fname): return open(os.path.join(os.path.dirname(__file__), fname)).read() setup(name = PACKAGE_NAME, - version = "0.9.19-dev", + version = "0.9.19", description = "Network protocols Constructors and Dissectors", url = "https://www.secureauth.com/labs/open-source-tools/impacket", author = "SecureAuth Corporation",