diff --git a/CHANGELOG.md b/CHANGELOG.md index 870bfb7..44bdcbd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## [2.11.0](https://github.com/HC-ONLINE/CiberWebScan/compare/v2.10.0...v2.11.0) (2026-08-04) + + +### Features + +* **forms:** enhance form extraction with additional attributes and n… ([0a2e830](https://github.com/HC-ONLINE/CiberWebScan/commit/0a2e83087904c6c371fa87a5454fd032bc31736e)) +* **forms:** enhance form extraction with additional attributes and normalization ([4ceb660](https://github.com/HC-ONLINE/CiberWebScan/commit/4ceb660c9a1ba4f1538e5d328b27646d33bc3397)) + ## [2.10.0](https://github.com/HC-ONLINE/CiberWebScan/compare/v2.9.0...v2.10.0) (2026-08-04) diff --git a/pyproject.toml b/pyproject.toml index e2afbf1..4d80d69 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "ciberwebscan" -version = "2.10.0" +version = "2.11.0" description = "Hybrid tool for passive reconnaissance, attack surface analysis, structured extraction and security assessment of web applications." readme = "README.md" license = {file = "LICENSE"} diff --git a/src/ciberwebscan/__init__.py b/src/ciberwebscan/__init__.py index 2cf95da..b9e7f2c 100644 --- a/src/ciberwebscan/__init__.py +++ b/src/ciberwebscan/__init__.py @@ -8,7 +8,7 @@ try: __version__ = version("ciberwebscan") except PackageNotFoundError: - __version__ = "2.10.0" + __version__ = "2.11.0" __author__ = "Andrés Henríquez (a.k.a. HC-ONLINE)" __email__ = "henriquezandres856@gmail.com" __description__ = "Hybrid tool for passive reconnaissance and attack surface analysis in web applications. It combines advanced scraping, technology fingerprinting, security assessment, and reporting into a single CLI solution. Designed for ethical, educational, and auditing purposes. This software MUST NOT be used on third-party systems."