aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authornatsuoto <[email protected]>2026-04-28 16:42:28 +0530
committerBobby <[email protected]>2026-04-28 17:04:42 +0530
commitf55b6d06b114a1e1a652ffd5203e31d1b9f41862 (patch)
tree3b54135d9036af662a74b6ebe549090d63afb048 /src
parent013c786d5c460e572ef4187e1aac8bf7782ec8f2 (diff)
downloadedify-f55b6d06b114a1e1a652ffd5203e31d1b9f41862.tar.xz
edify-f55b6d06b114a1e1a652ffd5203e31d1b9f41862.zip
chore(release): bump version to 0.3.0 and write changelog
Park the metadata at 0.3.0. This is not the release — the changelog header stays "(unreleased)" and we'll swap in a date when we actually tag. - setup.py, docs/conf.py, src/edify/__init__.py, .bumpversion.cfg: 0.2.2 -> 0.3.0. - README.rst: bump both `commits-since/v0.2.2` shields to v0.3.0. The shield will 404 until v0.3.0 is tagged, which is an accepted trade-off for keeping `bumpversion` config consistent. - CHANGELOG.rst: replace Copilot's stub `Unreleased` heading with a real `0.3.0 (unreleased)` entry covering everything since 0.2.2 — Python 3.7 drop (#32), 3.12/3.13/3.14 support and RTD updates (#31), GitHub Actions and PyPy and pre-commit modernization (#33, #35, #37), dependency floor bumps (#25-#29), repo infrastructure (#39), and housekeeping (#41, #43). - docs/conf.py: fix `extlinks` caption format. The old style — a bare prefix string like 'PR #' — was deprecated in Sphinx 5 and removed in Sphinx 6, but the bug stayed latent because no existing CHANGELOG entry actually used the `:pr:` or `:issue:` roles. The new changelog uses `:pr:` for every cross-reference, which is what surfaced the breakage in the docs CI job. Updated both captions to the modern `'PR #%s'` / `'#%s'` form. Closes #44
Diffstat (limited to 'src')
-rw-r--r--src/edify/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/edify/__init__.py b/src/edify/__init__.py
index 8f40a48..97ff6e4 100644
--- a/src/edify/__init__.py
+++ b/src/edify/__init__.py
@@ -1,4 +1,4 @@
# flake8: noqa
-__version__ = '0.2.2'
+__version__ = '0.3.0'
from .builder.builder import RegexBuilder