Skip to content

Commit e174b42

Browse files
committed
Release Waymap v7.2.0
- Update VERSION to 7.2.0 - Update lib/core/config.py and lib/core/reporting.py version strings - Fix console entry point in setup.py (waymap=waymap.waymap:main) - Include usage.md and VERSION in package data; exclude sessions from MANIFEST.in - Add __version__ and lib alias in __init__.py for post-install imports - Remove import waymap in waymap.py to avoid shadowing - Update docs site to v7.2.0, remove High/Critical profile pages, add usage.html
1 parent 772f537 commit e174b42

File tree

8 files changed

+31
-8
lines changed

8 files changed

+31
-8
lines changed

MANIFEST.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
include LICENSE
22
include README.md
3+
include usage.md
34
include VERSION
45
include pyproject.toml
56
recursive-include data *
67
recursive-include doc *
78
recursive-include extras *
89
recursive-include lib *
9-
recursive-include sessions *
1010
include waymap.py
1111
include setup.py

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
7.1.0
1+
7.2.0

__init__.py

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
2+
import importlib
3+
4+
5+
def _read_version() -> str:
6+
try:
7+
from waymap.lib.core.config import get_config
8+
9+
return get_config().VERSION
10+
except Exception:
11+
return "0.0.0"
12+
13+
14+
__version__ = _read_version()
15+
16+
17+
try:
18+
import sys
19+
20+
if "lib" not in sys.modules:
21+
sys.modules["lib"] = importlib.import_module("waymap.lib")
22+
except Exception:
23+
pass
7 Bytes
Binary file not shown.
7 Bytes
Binary file not shown.

lib/core/config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ class WaymapConfig:
1313
"""Waymap configuration settings."""
1414

1515
# Version
16-
VERSION: str = "7.0.0" # Updated to reflect major refactor
16+
VERSION: str = "7.2.0" # Updated for v7.2.0 release
1717
AUTHOR: str = "Trix Cyrus (Vicky)"
1818
COPYRIGHT: str = "Copyright © 2024 - 25 Trixsec Org"
1919

lib/core/reporting.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -455,7 +455,7 @@ def _build_html_report(self) -> str:
455455
</div>
456456
457457
<footer>
458-
<p><strong>Waymap v7.1.0</strong> - Advanced Web Vulnerability Scanner</p>
458+
<p><strong>Waymap v7.2.0</strong> - Advanced Web Vulnerability Scanner</p>
459459
<p>© 2024-2025 Trixsec Org | Generated with ❤️ by Waymap</p>
460460
</footer>
461461
</div>
@@ -471,7 +471,7 @@ def _build_markdown_report(self) -> str:
471471
md = f"""# Waymap Security Scan Report
472472
473473
**Generated**: {datetime.now().strftime("%B %d, %Y at %H:%M:%S")}
474-
**Scanner**: Waymap v7.1.0
474+
**Scanner**: Waymap v7.2.0
475475
476476
---
477477
@@ -523,7 +523,7 @@ def _build_markdown_report(self) -> str:
523523
524524
---
525525
526-
**Report Generated by Waymap v7.1.0**
526+
**Report Generated by Waymap v7.2.0**
527527
© 2024-2025 Trixsec Org
528528
"""
529529
return md

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,12 +50,12 @@
5050
],
5151
entry_points={
5252
"console_scripts": [
53-
"waymap=waymap:main",
53+
"waymap=waymap.waymap:main",
5454
],
5555
},
5656
include_package_data=True,
5757
package_data={
58-
"": ["data/*", "*.txt", "*.json", "*.xml"],
58+
"": ["data/*", "*.txt", "*.json", "*.xml", "*.md", "VERSION"],
5959
},
6060
keywords="security scanner vulnerability web-security penetration-testing",
6161
project_urls={

0 commit comments

Comments
 (0)