File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -9,6 +9,10 @@ Version numbers follow [Semantic Versioning](https://semver.org/spec/v2.0.0.html
99
1010## [ Unreleased]
1111
12+ ---
13+
14+ ## [ 0.14.1] — 2026-05-15
15+
1216### Changed
1317- ` __init__ ` : version fallback now catches ` PackageNotFoundError ` explicitly
1418 instead of bare ` Exception ` , consistent with all other platform modules.
@@ -71,6 +75,7 @@ Version numbers follow [Semantic Versioning](https://semver.org/spec/v2.0.0.html
7175
7276---
7377
74- [ Unreleased ] : https://github.com/NC3-TestingPlatform/subdomainenum/compare/v0.14.0...HEAD
78+ [ Unreleased ] : https://github.com/NC3-TestingPlatform/subdomainenum/compare/v0.14.1...HEAD
79+ [ 0.14.1 ] : https://github.com/NC3-TestingPlatform/subdomainenum/compare/v0.14.0...v0.14.1
7580[ 0.14.0 ] : https://github.com/NC3-TestingPlatform/subdomainenum/compare/v0.1.0...v0.14.0
7681[ 0.1.0 ] : https://github.com/NC3-TestingPlatform/subdomainenum/releases/tag/v0.1.0
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44
55[project ]
66name = " subdomainenum"
7- version = " 0.14.0 "
7+ version = " 0.14.1 "
88description = " Subdomain enumeration CLI: passive + active discovery with verdict summary"
99readme = " README.md"
1010requires-python = " >=3.11"
Original file line number Diff line number Diff line change 77try :
88 __version__ = version ("subdomainenum" )
99except PackageNotFoundError : # pragma: no cover – only when package not installed
10- __version__ = "0.14.0 "
10+ __version__ = "0.14.1 "
1111
1212# NullHandler so library users who have not configured logging
1313# do not see "No handler found" warnings (PEP 3118 / logging HOWTO).
You can’t perform that action at this time.
0 commit comments