diff --git a/.release-please-manifest.json b/.release-please-manifest.json index d0d087a3..7e3d799f 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "1.19.0" + ".": "1.19.1" } diff --git a/CHANGELOG.md b/CHANGELOG.md index a1b2c78f..810aee6e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [1.19.1](https://github.com/runpod/flash/compare/v1.19.0...v1.19.1) (2026-08-10) + + +### Bug Fixes + +* **login:** preserve runpodctl credentials in ~/.runpod/config.toml ([#333](https://github.com/runpod/flash/issues/333)) ([26263c7](https://github.com/runpod/flash/commit/26263c7e001b1609d882893fb4daccb21d3bf5a9)) + ## [1.19.0](https://github.com/runpod/flash/compare/v1.18.0...v1.19.0) (2026-07-28) diff --git a/pyproject.toml b/pyproject.toml index a1a99cfa..23e55bab 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "runpod-flash" -version = "1.19.0" +version = "1.19.1" 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 586b6b3a..db8abadb 100644 --- a/src/runpod_flash/__init__.py +++ b/src/runpod_flash/__init__.py @@ -1,4 +1,4 @@ -__version__ = "1.19.0" # x-release-please-version +__version__ = "1.19.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