chore: bump to 0.2.3, refresh uv.lock, add Python 3.14 support#18
Merged
Conversation
- version: 0.2.2 -> 0.2.3 to release the paragraph spacing fix from #17 - uv.lock: regenerate to current lockfile schema (revision 1 -> 3); same dependency graph, just metadata refresh from a newer uv - classifiers: add Python 3.14 (released Oct 2025) Tests pass on the default toolchain and on Python 3.14 explicitly (verified via `uv run --python 3.14 pytest`). Note: requires-python is still ">=3.8" to avoid breaking existing installs, though Python 3.8 (EOL Oct 2024) and 3.9 (EOL Oct 2025) are past upstream support. Dropping them is a follow-up.
Mirrors the classifier addition in pyproject.toml so CI actually exercises tests against Python 3.14 on every PR.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Maintenance PR following the merge of #17:
0.2.2→0.2.3to release the paragraph spacing fix from Fix paragraph_close collapsing paragraph spacing (#15) #17 (Bug: paragraph_close emits single newline, collapsing paragraph spacing #15).revision 1→revision 3). Same dependency graph — purely a metadata refresh from a neweruvrecordingupload-timefields.pyproject.tomlclassifiers and to thetests.ymlCI matrix, so every PR actually exercises tests on 3.14 (not just claims to support it). Verified locally withuv run --python 3.14 pytest— all 49 tests pass.Note on EOL Python versions
requires-pythonis still">=3.8"to avoid breaking existing installs, even though both 3.8 (EOL Oct 2024) and 3.9 (EOL Oct 2025) are past upstream support. Dropping them is a deliberate breaking change worth its own PR.Test plan
uv run pytest tests/— 49 passed (default toolchain)uv run --python 3.14 pytest tests/— 49 passed