Skip to content

Commit 55e303d

Browse files
author
=
committed
bump version
1 parent 959bc9e commit 55e303d

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

dploot/entry.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
import argparse
2+
import importlib.metadata
23
import logging
34
import sys
45
import traceback
@@ -44,8 +45,8 @@
4445

4546
def main() -> None:
4647
logger.init()
47-
48-
parser = argparse.ArgumentParser(description="DPAPI looting remotely in Python", add_help=True)
48+
version = importlib.metadata.version("dploot")
49+
parser = argparse.ArgumentParser(description=f"DPAPI looting remotely in Python.\nVersion {version}", add_help=True)
4950

5051
parser.add_argument("-debug", action="store_true", help="Turn DEBUG output ON")
5152

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "dploot"
3-
version = "2.6.0"
3+
version = "2.6.1"
44
description = "DPAPI looting remotely in Python"
55
readme = "README.md"
66
homepage = "https://github.com/zblurx/dploot"

0 commit comments

Comments
 (0)