Skip to content

Commit 3e371c4

Browse files
HackingDaveHackingDave
authored andcommitted
Bump release metadata to 8.1.2
1 parent 32efa15 commit 3e371c4

5 files changed

Lines changed: 13 additions & 5 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ SET is only for authorized testing where explicit permission and scope have been
1414
- macOS, experimental
1515
- Windows through WSL/WSL2 Kali or another supported Linux environment
1616

17-
SET 8.1.1 targets Python 3.11 through Python 3.13.
17+
SET 8.1.2 targets Python 3.11 through Python 3.13.
1818

1919
## Installation
2020

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "social-engineer-toolkit"
7-
version = "8.1.1"
7+
version = "8.1.2"
88
description = "An open-source penetration testing framework for authorized social-engineering assessments."
99
readme = "README.md"
1010
requires-python = ">=3.11,<3.14"

readme/CHANGELOG

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
~~~~~~~~~~~~~~~~
2+
version 8.1.2
3+
~~~~~~~~~~~~~~~~
4+
5+
* fix Python 3 runtime errors in the Binary2Teensy generator caused by removed Python 2 builtins and byte/string handling
6+
* create the QR-code reports directory before writing generated QR images
7+
* fix Python 3 encrypted HTTP listener AES initialization, request-header parsing, POST decoding, and URL hex decoding
8+
19
~~~~~~~~~~~~~~~~
210
version 8.1.1
311
~~~~~~~~~~~~~~~~

src/core/set.version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
8.1.1
1+
8.1.2

tests/test_release_metadata.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ def test_release_version_is_consistent():
99
pyproject = tomllib.loads((ROOT / "pyproject.toml").read_text())
1010
set_version = (ROOT / "src/core/set.version").read_text().strip()
1111

12-
assert pyproject["project"]["version"] == "8.1.1"
13-
assert set_version == "8.1.1"
12+
assert pyproject["project"]["version"] == "8.1.2"
13+
assert set_version == "8.1.2"
1414

1515

1616
def test_ci_targets_supported_python_versions():

0 commit comments

Comments
 (0)