Skip to content

Commit 190f409

Browse files
committed
chore: bump to v0.5.0 and update CHANGELOG for STARTTLS expansion
1 parent 3d2ad2b commit 190f409

3 files changed

Lines changed: 8 additions & 5 deletions

File tree

CHANGELOG.md

Lines changed: 6 additions & 3 deletions
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.5.0] — 2026-05-05
15+
1216
### Changed
1317
- **`_probe_ftp` greeting/response reads are now loop-safe** — replaced single
1418
`sock.recv(1024)` calls with chunk-accumulation loops that read until `\n` or
@@ -37,8 +41,6 @@ Version numbers follow [Semantic Versioning](https://semver.org/spec/v2.0.0.html
3741
MySQL, PostgreSQL) remain unsupported in auto-detect mode by design, keeping
3842
the probe protocol-agnostic.
3943

40-
---
41-
4244
## [0.4.0] — 2026-04-29
4345

4446
### Added
@@ -133,7 +135,8 @@ Version numbers follow [Semantic Versioning](https://semver.org/spec/v2.0.0.html
133135

134136
---
135137

136-
[Unreleased]: https://github.com/NC3-TestingPlatform/quantumvalidator/compare/v0.4.0...HEAD
138+
[Unreleased]: https://github.com/NC3-TestingPlatform/quantumvalidator/compare/v0.5.0...HEAD
139+
[0.5.0]: https://github.com/NC3-TestingPlatform/quantumvalidator/compare/v0.4.0...v0.5.0
137140
[0.4.0]: https://github.com/NC3-TestingPlatform/quantumvalidator/compare/v0.3.0...v0.4.0
138141
[0.3.0]: https://github.com/NC3-TestingPlatform/quantumvalidator/compare/v0.2.0...v0.3.0
139142
[0.2.0]: https://github.com/NC3-TestingPlatform/quantumvalidator/compare/v0.1.0...v0.2.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 = "quantumvalidator"
7-
version = "0.4.0"
7+
version = "0.5.0"
88
description = "Quantum-safe cryptography validator — TLS, STARTTLS, and SSH post-quantum readiness assessment"
99
readme = "README.md"
1010
requires-python = ">=3.11"

quantumvalidator/__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("quantumvalidator")
77
except PackageNotFoundError: # pragma: no cover
8-
__version__ = "0.4.0"
8+
__version__ = "0.5.0"
99

1010
import logging as _logging
1111

0 commit comments

Comments
 (0)