Skip to content

Commit

Permalink
Updated README and setup.py for the v0.11 release
Browse files Browse the repository at this point in the history
  • Loading branch information
gabrielg5 committed Jul 31, 2023
1 parent 9b4a139 commit 4c702fa
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,15 +50,15 @@ Getting Impacket

### Latest version

* Impacket v0.10.0
* Impacket v0.11.0

[![Python versions](https://img.shields.io/pypi/pyversions/impacket.svg)](https://pypi.python.org/pypi/impacket/)

[Current and past releases](https://github.com/fortra/impacket/releases)

### Development version

* Impacket v0.10.1-dev (**[master branch](https://github.com/fortra/impacket/tree/master)**)
* Impacket v0.12.0-dev (**[master branch](https://github.com/fortra/impacket/tree/master)**)

[![Python versions](https://img.shields.io/badge/python-3.6%20|%203.7%20|%203.8%20|%203.9%20|%203.10-blue.svg)](https://github.com/fortra/impacket/tree/master)

Expand Down
7 changes: 4 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@
PACKAGE_NAME = "impacket"

VER_MAJOR = 0
VER_MINOR = 10
VER_MAINT = 1
VER_PREREL = "dev1"
VER_MINOR = 11
VER_MAINT = 0
VER_PREREL = ""
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 @@ -72,6 +72,7 @@ def read(fname):
extras_require={'pyreadline:sys_platform=="win32"': [],
},
classifiers=[
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.7",
Expand Down

0 comments on commit 4c702fa

Please sign in to comment.