Skip to content
Open
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.0"
".": "1.11.1"
}
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

## [1.11.1](https://github.com/runpod/flash/compare/v1.11.0...v1.11.1) (2026-03-25)


### Bug Fixes

* enforce payload size limit and timeout on deserialization ([#289](https://github.com/runpod/flash/issues/289)) ([1240d82](https://github.com/runpod/flash/commit/1240d824a19d98f655eda50fc8c6b4e37c3834ca))

## [1.11.0](https://github.com/runpod/flash/compare/v1.10.2...v1.11.0) (2026-03-25)


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.0"
version = "1.11.1"
description = "A Python library for distributed inference and serving of machine learning models"
authors = [
{ name = "Runpod", email = "engineer@runpod.io" },
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.0" # x-release-please-version
__version__ = "1.11.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
Expand Down
Loading