Skip to content

Commit 6feb42d

Browse files
committed
chore: bump to v0.14.1 and update CHANGELOG
1 parent bb1463a commit 6feb42d

3 files changed

Lines changed: 8 additions & 3 deletions

File tree

CHANGELOG.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff 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

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 = "subdomainenum"
7-
version = "0.14.0"
7+
version = "0.14.1"
88
description = "Subdomain enumeration CLI: passive + active discovery with verdict summary"
99
readme = "README.md"
1010
requires-python = ">=3.11"

subdomainenum/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
try:
88
__version__ = version("subdomainenum")
99
except 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).

0 commit comments

Comments
 (0)