chore: release 0.25.2 - final tetra-rp release (AE-1522)#172
Merged
Conversation
This is the final release of tetra-rp. All future development and releases will be under the new package name runpod-flash. - Bump version to 0.25.2 - Add deprecation notice to README - Update installation instructions to point to new package - Add migration guide in CHANGELOG - Update install section with migration steps Users should migrate to runpod-flash and update imports from tetra_rp to runpod_flash.
jhcipar
approved these changes
Feb 4, 2026
rambo-runpod
approved these changes
Feb 4, 2026
Contributor
There was a problem hiding this comment.
Pull request overview
This PR marks the final release (v0.25.2) of the tetra-rp package before transitioning to the new runpod-flash package name. It adds deprecation notices and migration instructions to inform users of the package name change.
Changes:
- Version bumped from 0.25.1 to 0.25.2 in pyproject.toml
- Added prominent deprecation notice at the top of README with migration instructions
- Updated installation section with note directing new users to
runpod-flash - Added deprecation entry to CHANGELOG for version 0.25.2
Reviewed changes
Copilot reviewed 3 out of 4 changed files in this pull request and generated no comments.
| File | Description |
|---|---|
| pyproject.toml | Version bump to 0.25.2 for final release |
| README.md | Added deprecation warnings and migration guide at top of file and in installation section |
| CHANGELOG.md | Added 0.25.2 release entry with deprecation notice and migration instructions |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
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
This is the final release of
tetra-rpbefore transitioning torunpod-flash. Version 0.25.2 includes deprecation notices to inform users of the migration path.Breaking Changes
This is the final release of the
tetra-rppackage. All future development and releases will be under the new package namerunpod-flash.Migration Path
Users should:
tetra-rp:pip uninstall tetra-rppip install runpod-flashfrom tetra_rp import ...→from runpod_flash import ...Testing
Next Steps
After this is merged and released on PyPI, PR #165 (runpod/flash transition) can be merged and published as the
runpod-flashpackage.AE-1522