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.4.2"
".": "1.5.0"
}
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,19 @@
# Changelog

## [1.5.0](https://github.com/runpod/flash/compare/v1.4.2...v1.5.0) (2026-02-27)


### Features

* flash login command ([#160](https://github.com/runpod/flash/issues/160)) ([4480308](https://github.com/runpod/flash/commit/44803089f5e11fec3eee14b787a7d5c2eaad1410))


### Bug Fixes

* add validator for workersmax and workersmin on sls endpoints ([#231](https://github.com/runpod/flash/issues/231)) ([c24a21b](https://github.com/runpod/flash/commit/c24a21ba485cfda8ae9dba56c8f245d73505720c))
* dep parsing for remote decorated functions ([#230](https://github.com/runpod/flash/issues/230)) ([f7486cb](https://github.com/runpod/flash/commit/f7486cb7c42ecad2fe743cef39634dd8dda15f50))
* persist env vars to manifest and deployed endpoints ([#226](https://github.com/runpod/flash/issues/226)) ([4e583c7](https://github.com/runpod/flash/commit/4e583c74e644f2a17a22d19f547f60f179ce1f55))

## [1.4.2](https://github.com/runpod/flash/compare/v1.4.1...v1.4.2) (2026-02-26)


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.4.2"
version = "1.5.0"
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.4.2" # x-release-please-version
__version__ = "1.5.0" # x-release-please-version

# Load .env vars from file before everything else
from dotenv import load_dotenv
Expand Down
Loading