Release prep: bump to 0.3.0, backfill CHANGELOG for 0.2.0/0.2.1 - #31
Merged
Conversation
CHANGELOG's "Unreleased" section had never been closed out across the last two releases -- it still described work that actually shipped in 0.2.0, with no entry at all for 0.2.1. Split it into proper 0.2.0/0.2.1 sections (dated from the version-bump commits) and added a new entry for what has landed on master since v0.2.1: the hideable golden set, codameter-bench, the RT-coda envelope + branch-asymmetry tools, the coda_window_from_envelope() envelope-flattening detector, and -- called out explicitly as breaking -- the FrugalMind suite dataset_id rename from "dvv_processing" to "codameter" (src/codameter/frugalmind.py), which changes the suite name and exported JSONL path a harness resolves. Verified: 219/219 tests pass (1 unrelated skip), sdist+wheel build cleanly and pass `twine check`.
There was a problem hiding this comment.
Pull request overview
Prepares the repository for a 0.3.0 release by updating the package’s single-source version and backfilling the changelog sections that were never properly closed out for 0.2.0/0.2.1.
Changes:
- Bump package version to
0.3.0viasrc/codameter/_version.py. - Restructure
CHANGELOG.mdto include dated sections for0.2.0,0.2.1, and0.3.0with detailed release notes.
Reviewed changes
Copilot reviewed 2 out of 2 changed files in this pull request and generated 1 comment.
| File | Description |
|---|---|
| src/codameter/_version.py | Updates the package version constant to 0.3.0 (used by Hatch dynamic versioning). |
| CHANGELOG.md | Adds and reorganizes release entries for 0.2.0/0.2.1 and a new 0.3.0 section. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Comment on lines
+7
to
9
| ## 0.3.0 — 2026-07-27 | ||
|
|
||
| ### Added |
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.
Prep for cutting a codameter release per FrugalMind's finding: the private-golden
mechanism and the
dvv_processing->codameterdataset_id rename exist onmaster but were never released -- FrugalMind's last eval run is pinned to
v0.2.1, which predates both.
across the last two version bumps (0.2.0, 0.2.1) -- split into proper dated
sections, and added a new entry for everything unreleased since v0.2.1.
src/codameter/_version.pyto 0.3.0.Does not push a
v0.3.0tag -- that triggersrelease.yml(PyPI publish +GitHub release, which mints a Zenodo DOI), so I'm holding that for explicit
go-ahead after this merges.
Test plan
python -m buildproduces a clean sdist + wheel;twine checkpassesimport codameter; codameter.__version__ == "0.3.0"