From 3221c623b351e418025cf2070e88c675818193bf Mon Sep 17 00:00:00 2001 From: "runpod-release-please-bot[bot]" <228772213+runpod-release-please-bot[bot]@users.noreply.github.com> Date: Fri, 20 Mar 2026 19:02:13 +0000 Subject: [PATCH] chore: release 1.10.1 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 20 ++++++++++++++++++++ pyproject.toml | 2 +- src/runpod_flash/__init__.py | 2 +- 4 files changed, 23 insertions(+), 3 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index d9246ddf..211ac9a5 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "1.10.0" + ".": "1.10.1" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 681c4a03..7adf8a36 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,25 @@ # Changelog +## [1.10.1](https://github.com/runpod/flash/compare/v1.10.0...v1.10.1) (2026-03-20) + + +### Features + +* bump max flash tarball size ([#258](https://github.com/runpod/flash/issues/258)) ([4c58a3e](https://github.com/runpod/flash/commit/4c58a3e63bd323b1e16740323bea2f410a3fc8bb)) +* **cli:** add flash update command with passive update check ([#237](https://github.com/runpod/flash/issues/237)) ([5464ce0](https://github.com/runpod/flash/commit/5464ce0a3c741bf88d6f0b53933574fcbfdb8c1f)) + + +### Bug Fixes + +* **init:** `flash init` show usage menu when called without arguments ([#235](https://github.com/runpod/flash/issues/235)) ([3144d0c](https://github.com/runpod/flash/commit/3144d0cb7abf10566aa9a67b8793d8a116b9da46)) +* resolve .env from CWD and stop _do_deploy env mutation ([#236](https://github.com/runpod/flash/issues/236)) ([583efae](https://github.com/runpod/flash/commit/583efae06b2923ef8da825cd20a8d89af68c2be3)) +* retry tarball upload on transient SSL and connection errors ([#279](https://github.com/runpod/flash/issues/279)) ([564f51e](https://github.com/runpod/flash/commit/564f51e80f0340f7f4b0163780896efa337686f4)) + + +### Code Refactoring + +* separate .env from deployed endpoint env vars ([#257](https://github.com/runpod/flash/issues/257)) ([ee26c43](https://github.com/runpod/flash/commit/ee26c43267dabb042cdc455e691b7dfaf65686d9)) + ## [1.10.0](https://github.com/runpod/flash/compare/v1.9.1...v1.10.0) (2026-03-17) diff --git a/pyproject.toml b/pyproject.toml index e136045b..3a97878d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "runpod-flash" -version = "1.10.0" +version = "1.10.1" description = "A Python library for distributed inference and serving of machine learning models" authors = [ { name = "Runpod", email = "engineer@runpod.io" }, diff --git a/src/runpod_flash/__init__.py b/src/runpod_flash/__init__.py index d15ef0b7..06f853dd 100644 --- a/src/runpod_flash/__init__.py +++ b/src/runpod_flash/__init__.py @@ -1,4 +1,4 @@ -__version__ = "1.10.0" # x-release-please-version +__version__ = "1.10.1" # 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