From 3354965ad67d19563b704906e1a5e2abe78c321d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dean=20Qui=C3=B1anola?= Date: Tue, 3 Feb 2026 17:42:56 -0800 Subject: [PATCH] chore: release 0.25.2 - final tetra-rp release 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. --- CHANGELOG.md | 8 ++++++++ README.md | 19 +++++++++++++++++++ pyproject.toml | 2 +- uv.lock | 2 +- 4 files changed, 29 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e970d9d..27d8a93 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## [0.25.2](https://github.com/runpod/tetra-rp/compare/v0.25.1...v0.25.2) (2026-02-03) + +### ⚠️ DEPRECATED + +This is the final release of `tetra-rp`. All future development and releases will be under the new package name `runpod-flash`. See [runpod/flash](https://github.com/runpod/flash) for the new repository. + +**Migration guide:** Uninstall `tetra-rp`, install `runpod-flash`, and update imports from `from tetra_rp import ...` to `from runpod_flash import ...` + ## [0.25.1](https://github.com/runpod/tetra-rp/compare/v0.25.0...v0.25.1) (2026-02-03) diff --git a/README.md b/README.md index 2fdd4a2..8273bad 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,16 @@ +# ⚠️ DEPRECATED: tetra-rp + +> **This package is deprecated.** The final release of `tetra-rp` is version 0.25.2. All future development and releases will be under the new package name `runpod-flash`. +> +> **Migration Required:** To upgrade, install the new package and update your imports: +> ```bash +> pip uninstall tetra-rp +> pip install runpod-flash +> ``` +> Then update your imports from `from tetra_rp import ...` to `from runpod_flash import ...` +> +> See [runpod/flash](https://github.com/runpod/flash) for the new repository. + # Flash: Serverless computing for AI workloads Runpod Flash is a Python SDK that streamlines the development and deployment of AI workflows on Runpod's [Serverless infrastructure](http://docs.runpod.io/serverless/overview). Write Python functions locally, and Flash handles the infrastructure, provisioning GPUs and CPUs, managing dependencies, and transferring data, allowing you to focus on building AI applications. @@ -43,6 +56,12 @@ Before you can use Flash, you'll need: ### Step 1: Install Flash +> **Note:** This documentation describes the deprecated `tetra-rp` package. For new projects, use `runpod-flash`: +> ```bash +> pip install runpod-flash +> ``` + +For the legacy package: ```bash pip install tetra_rp ``` diff --git a/pyproject.toml b/pyproject.toml index a45f135..5081483 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "tetra_rp" -version = "0.25.1" +version = "0.25.2" description = "A Python library for distributed inference and serving of machine learning models" authors = [ { name = "Runpod", email = "engineer@runpod.io" }, diff --git a/uv.lock b/uv.lock index ea9cce9..9178217 100644 --- a/uv.lock +++ b/uv.lock @@ -3258,7 +3258,7 @@ wheels = [ [[package]] name = "tetra-rp" -version = "0.25.0" +version = "0.25.2" source = { editable = "." } dependencies = [ { name = "cloudpickle" },