chore: bump version to 0.4.0#7
Merged
Merged
Conversation
PR #5 added the agent-friendly `featcopilot` CLI (`info` / `transform` / `explain`) — a new user-facing surface that warrants a minor-version bump under semver. PR #6 followed up with three correctness fixes (`Feature.compute` safe-builtins, `SyncCopilotFeatureClient` public-API consistency, `FeatureCache` exception logging) and the new CLI documentation page. This commit bumps: - `pyproject.toml::version` 0.3.7 → 0.4.0 - `docs/getting-started/installation.md` sample expected output - `docs/user-guide/cli.md` `info` JSON sample The CLI's `info --json` reports the actual installed version via `featcopilot.__version__` (read from package metadata at import time), so all three references stay in sync once installed. Local: `python -m pytest tests/test_cli.py` passes 135/135 with the bumped version (the `test_info_json_emits_supported_options` and related tests cross-check `payload["version"] == __version__`). Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
jianglibigdata
approved these changes
May 6, 2026
There was a problem hiding this comment.
Pull request overview
Bumps the package version to 0.4.0 and updates documentation examples to match, reflecting the expanded user-facing CLI surface introduced in prior PRs.
Changes:
- Update
pyproject.tomlproject version from0.3.7to0.4.0. - Refresh docs samples to show
0.4.0in CLIinfo --jsonoutput and installation verification snippet.
Reviewed changes
Copilot reviewed 3 out of 3 changed files in this pull request and generated no comments.
| File | Description |
|---|---|
pyproject.toml |
Bumps the published package version to 0.4.0. |
docs/user-guide/cli.md |
Updates the sample info --json payload version to 0.4.0. |
docs/getting-started/installation.md |
Updates the installation verification example output version to 0.4.0. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## main #7 +/- ##
=======================================
Coverage 89.32% 89.32%
=======================================
Files 38 38
Lines 4358 4358
=======================================
Hits 3893 3893
Misses 465 465
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
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
Bump version 0.3.7 → 0.4.0 (minor) reflecting the new user-facing CLI surface added in PR #5 and stabilized in PR #6.
What's in 0.4.0 since 0.3.7 (PR #4)
featcopilotCLI withinfo/transform/explainsubcommands. Stable JSON contract (stdout=result, stderr=failures, deterministic exit codes),--configJSON file support, parquet-conditional I/O, captured warnings in JSONwarningsfield. ~4900 lines includingfeatcopilot/cli.pyandtests/test_cli.py.Feature.compute_SAFE_BUILTINSwhitelist (solen/range/int/sumactually work in stored snippets, with proper isolation across calls and a single shared namespace for comprehensions/lambdas),SyncCopilotFeatureClientadded to the publicfeatcopilot.llmAPI to match the OpenAI/LiteLLM sync clients,FeatureCacheexception paths now log instead of silently swallowing. Newdocs/user-guide/cli.mdcovering the CLI;mkdocs.ymlnav updated; sample-output version indocs/getting-started/installation.mdcorrected. +12 regression tests pinning each new contract.Files changed
pyproject.tomlversion = "0.3.7"version = "0.4.0"docs/getting-started/installation.md# Output: 0.3.7# Output: 0.4.0docs/user-guide/cli.md(info JSON sample)"version": "0.3.7""version": "0.4.0"Verification
pip install -e .→import featcopilot; featcopilot.__version__returns"0.4.0".python -m pytest tests/test_cli.py: 135 passed. Thetest_info_json_emits_supported_optionstest (and friends) cross-checkspayload["version"] == __version__so the doc sample / pyproject value / runtime value stay in sync.Release follow-ups (out of scope of this PR)
v0.4.0after merge, mirroring the existingv0.3.7pattern.