Skip to content

Commit 8eb8631

Browse files
committed
chore: bump to v0.1.7 and update CHANGELOG
1 parent 4fc3509 commit 8eb8631

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.1.7] — 2026-05-15
15+
1216
### Changed
1317
- `__init__`: added `NullHandler` on the `"mailvalidator"` logger so library
1418
users do not see spurious "No handler found" warnings (consistent with all
@@ -120,7 +124,8 @@ Version numbers follow [Semantic Versioning](https://semver.org/spec/v2.0.0.html
120124

121125
---
122126

123-
[Unreleased]: https://github.com/NC3-TestingPlatform/mailvalidator/compare/v0.1.6...HEAD
127+
[Unreleased]: https://github.com/NC3-TestingPlatform/mailvalidator/compare/v0.1.7...HEAD
128+
[0.1.7]: https://github.com/NC3-TestingPlatform/mailvalidator/compare/v0.1.6...v0.1.7
124129
[0.1.6]: https://github.com/NC3-TestingPlatform/mailvalidator/compare/v0.1.5...v0.1.6
125130
[0.1.5]: https://github.com/NC3-TestingPlatform/mailvalidator/compare/v0.1.4...v0.1.5
126131
[0.1.4]: https://github.com/NC3-TestingPlatform/mailvalidator/compare/v0.1.3...v0.1.4

mailvalidator/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
try:
66
__version__ = version("mailvalidator")
77
except PackageNotFoundError: # pragma: no cover – only when package not installed
8-
__version__ = "0.1.6"
8+
__version__ = "0.1.7"
99

1010
# NullHandler so library users who have not configured logging
1111
# do not see "No handler found" warnings (PEP 3118 / logging HOWTO).

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 = "mailvalidator"
7-
version = "0.1.6"
7+
version = "0.1.7"
88
description = "Mail server configuration assessment CLI utility"
99
readme = "README.md"
1010
requires-python = ">=3.11"

0 commit comments

Comments
 (0)