Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "1.11.2"
".": "1.11.3"
}
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# Changelog

## [1.11.3](https://github.com/runpod/flash/compare/v1.11.2...v1.11.3) (2026-04-01)


### Bug Fixes

* CE-1414 rely on flashBootType instead of -fb ([#297](https://github.com/runpod/flash/issues/297)) ([1f8b7d6](https://github.com/runpod/flash/commit/1f8b7d6f3a25034a6aedb258275ec38c59d2c206))
* **execute_class:** add async lock to prevent double deploy ([#274](https://github.com/runpod/flash/issues/274)) ([4ef36c8](https://github.com/runpod/flash/commit/4ef36c889ea4865db51fe37a5677ec9614feb445))
* **serverless:** use executionTimeoutMs as runsync client timeout ([#272](https://github.com/runpod/flash/issues/272)) ([49451d4](https://github.com/runpod/flash/commit/49451d475243cd7cab4182b65942e168d177ea0a))
* **stubs:** handle None return from void [@remote](https://github.com/remote) functions ([#273](https://github.com/runpod/flash/issues/273)) ([65aa1c9](https://github.com/runpod/flash/commit/65aa1c9827742b1f3dc9a4b81fdea35126808f75))
* update skeleton template python version ([#298](https://github.com/runpod/flash/issues/298)) ([633f708](https://github.com/runpod/flash/commit/633f7086e935ff42be4c1e7adb1ce519e11e8098))

## [1.11.2](https://github.com/runpod/flash/compare/v1.11.1...v1.11.2) (2026-03-28)


Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "runpod-flash"
version = "1.11.2"
version = "1.11.3"
description = "A Python library for distributed inference and serving of machine learning models"
authors = [{ name = "Runpod", email = "engineer@runpod.io" }]
readme = "README.md"
Expand Down
2 changes: 1 addition & 1 deletion src/runpod_flash/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = "1.11.2" # x-release-please-version
__version__ = "1.11.3" # 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
Expand Down
Loading