Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 10 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,10 @@ Version numbers follow [Semantic Versioning](https://semver.org/spec/v2.0.0.html

## [Unreleased]

---

## [0.3.4] — 2026-08-12

### Changed

- Dependency floors raised across the board by the Dependabot batch of
Expand All @@ -29,6 +33,10 @@ Version numbers follow [Semantic Versioning](https://semver.org/spec/v2.0.0.html
environment installed before this batch may sit below the declared floor —
re-run `pip install -e ".[dev]"`.

- `pyproject.toml`: `license` is now the canonical SPDX expression
`GPL-3.0-only` instead of the deprecated `GPL-3.0` identifier. The license
itself is unchanged — only its machine-readable spelling.

---

## [0.3.3] — 2026-07-14
Expand Down Expand Up @@ -501,7 +509,8 @@ Version numbers follow [Semantic Versioning](https://semver.org/spec/v2.0.0.html

---

[Unreleased]: https://github.com/NC3-TestingPlatform/mailvalidator/compare/v0.3.3...HEAD
[Unreleased]: https://github.com/NC3-TestingPlatform/mailvalidator/compare/v0.3.4...HEAD
[0.3.4]: https://github.com/NC3-TestingPlatform/mailvalidator/compare/v0.3.3...v0.3.4
[0.3.3]: https://github.com/NC3-TestingPlatform/mailvalidator/compare/v0.3.2...v0.3.3
[0.3.2]: https://github.com/NC3-TestingPlatform/mailvalidator/compare/v0.3.1...v0.3.2
[0.3.1]: https://github.com/NC3-TestingPlatform/mailvalidator/compare/v0.3.0...v0.3.1
Expand Down
2 changes: 1 addition & 1 deletion mailvalidator/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
try:
__version__ = version("mailvalidator")
except PackageNotFoundError: # pragma: no cover – only when package not installed
__version__ = "0.3.3"
__version__ = "0.3.4"

# NullHandler so library users who have not configured logging
# do not see "No handler found" warnings (PEP 3118 / logging HOWTO).
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@ build-backend = "setuptools.build_meta"

[project]
name = "mailvalidator"
version = "0.3.3"
version = "0.3.4"
description = "Mail server configuration assessment CLI utility"
readme = "README.md"
requires-python = ">=3.11"
license = "GPL-3.0"
license = "GPL-3.0-only"
license-files = ["LICENSE"]
authors = [{ name = "t0kubetsu" }]
keywords = [
Expand Down