From 15e5feeb9c2015c8070e5187c26a1f2ae69c3510 Mon Sep 17 00:00:00 2001 From: "runpod-release-please-bot[bot]" <228772213+runpod-release-please-bot[bot]@users.noreply.github.com> Date: Wed, 27 May 2026 22:00:54 +0000 Subject: [PATCH] chore: release 1.17.0 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 15 +++++++++++++++ pyproject.toml | 2 +- src/runpod_flash/__init__.py | 2 +- 4 files changed, 18 insertions(+), 3 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 5677a32d..46e7a463 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "1.16.0" + ".": "1.17.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index c35b0fe4..8c5d0739 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,20 @@ # Changelog +## [1.17.0](https://github.com/runpod/flash/compare/v1.16.0...v1.17.0) (2026-05-27) + + +### Features + +* add agent source tracking to user-agent header ([#342](https://github.com/runpod/flash/issues/342)) ([5707093](https://github.com/runpod/flash/commit/5707093f13ce2a1b597e1025464104a53b594796)) +* **rules:** agent rules layer with CLI-first directive ([#341](https://github.com/runpod/flash/issues/341)) ([4b65121](https://github.com/runpod/flash/commit/4b65121bffb8e1919dab588b4bebff448af4962a)) +* **sdk:** accept python 3.13 as a target version ([#338](https://github.com/runpod/flash/issues/338)) ([0665ba8](https://github.com/runpod/flash/commit/0665ba8391875159249853bec6895b2c947869f3)) + + +### Bug Fixes + +* **endpoint:** retry EndpointJob.wait() on transient httpx errors ([#340](https://github.com/runpod/flash/issues/340)) ([c126357](https://github.com/runpod/flash/commit/c126357ba3cb83935a2afe9c5bbe04ba75024917)) +* **resources:** honor caller-supplied imageName in Live* resources ([#339](https://github.com/runpod/flash/issues/339)) ([62df62c](https://github.com/runpod/flash/commit/62df62c249fc5a70fff9a2862860934a106ade73)) + ## [1.16.0](https://github.com/runpod/flash/compare/v1.15.0...v1.16.0) (2026-04-28) diff --git a/pyproject.toml b/pyproject.toml index fbf0714f..cd6ef80f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "runpod-flash" -version = "1.16.0" +version = "1.17.0" description = "A Python library for distributed inference and serving of machine learning models" authors = [{ name = "Runpod", email = "engineer@runpod.io" }] readme = "README.md" diff --git a/src/runpod_flash/__init__.py b/src/runpod_flash/__init__.py index 52a4de00..1eca1a3b 100644 --- a/src/runpod_flash/__init__.py +++ b/src/runpod_flash/__init__.py @@ -1,4 +1,4 @@ -__version__ = "1.16.0" # x-release-please-version +__version__ = "1.17.0" # x-release-please-version # Load .env vars from file before everything else # usecwd=True walks up from CWD (user's project) instead of from the