Skip to content

Commit 7f01a51

Browse files
committed
v0.14.3
1 parent 902bea9 commit 7f01a51

File tree

5 files changed

+11
-3
lines changed

5 files changed

+11
-3
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# 📆 Changelog
22

3+
## [02. November 2025] - Version 0.14.3
4+
5+
- **Enhanced Patching Prioritization Calculation**
6+
- **Dependabot added**
7+
8+
*Special thanks to [Manuel Sommer](https://github.com/manuel-sommer) for the improvements.*
9+
310
## [18. October 2025] - Version 0.14.2
411

512
- **Directory Import Feature**

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
FROM python:3.13-slim-trixie
22

3-
LABEL version="0.14.2"
3+
LABEL version="0.14.3"
44
LABEL description="SploitScan is a powerful and user-friendly tool designed to streamline the process of identifying exploits for known vulnerabilities and their respective exploitation probability"
55

66
ARG DEBIAN_FRONTEND=noninteractive

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -423,6 +423,7 @@ Special thanks to:
423423
- [con-f-use](https://github.com/con-f-use) for support and fixes with setuptools/PyPi.
424424
- [Martijn Russchen](https://github.com/martijnrusschen) for his feedback and idea on HackerOne GraphQL.
425425
- [diwskx](https://github.com/diwskx) for the directory import feature and Docker improvements.
426+
- [Manuel Sommer](https://github.com/manuel-sommer) for improving the patching prioritization calculation as well as adding Dependabot.
426427
427428
## 📌 Author
428429

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 = "sploitscan"
7-
version = "0.14.2"
7+
version = "0.14.3"
88
description = "SploitScan is a cybersecurity utility designed to provide detailed information on vulnerabilities and associated exploits."
99
authors = [ { name = "Alexander Hagenah", email = "[email protected]" } ]
1010
license = { file = "LICENSE" }

sploitscan/constants.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
from typing import Dict
66

77
# Version
8-
VERSION: str = "0.14.2"
8+
VERSION: str = "0.14.3"
99

1010
# ANSI Colors
1111
BLUE: str = "\033[94m"

0 commit comments

Comments
 (0)