diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 2ef9a1c2..a25d1bc0 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "1.14.0" + ".": "1.15.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 6e96c7b2..3bf35337 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [1.15.0](https://github.com/runpod/flash/compare/v1.14.0...v1.15.0) (2026-04-23) + + +### Features + +* implicit flash endpoint resolution + CLI overhaul ([#324](https://github.com/runpod/flash/issues/324)) ([7e1bef3](https://github.com/runpod/flash/commit/7e1bef314d5c07bb8092066d5f5796be7f8a8bbc)) + ## [1.14.0](https://github.com/runpod/flash/compare/v1.13.0...v1.14.0) (2026-04-17) diff --git a/pyproject.toml b/pyproject.toml index 043700d3..6573737d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "runpod-flash" -version = "1.14.0" +version = "1.15.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 7316c2dd..4d336eca 100644 --- a/src/runpod_flash/__init__.py +++ b/src/runpod_flash/__init__.py @@ -1,4 +1,4 @@ -__version__ = "1.14.0" # x-release-please-version +__version__ = "1.15.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