diff --git a/.release-please-manifest.json b/.release-please-manifest.json index c4ddc74..c3f1463 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "1.1.1" + ".": "1.2.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index e4a6eb6..6f295ca 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,17 @@ # Changelog +## [1.2.0](https://github.com/runpod-workers/flash/compare/v1.1.1...v1.2.0) (2026-03-10) + + +### Features + +* Python version matrix for Docker images + error-masking fix ([#76](https://github.com/runpod-workers/flash/issues/76)) ([a9845c6](https://github.com/runpod-workers/flash/commit/a9845c6e8db75419c26e6f58a17737d7bb0fe25c)) + + +### Bug Fixes + +* **ci:** remove partial semver docker tags ([#73](https://github.com/runpod-workers/flash/issues/73)) ([4499808](https://github.com/runpod-workers/flash/commit/44998087a608a64b0e64020efeb5bf2320d1561f)) + ## [1.1.1](https://github.com/runpod-workers/flash/compare/v1.1.0...v1.1.1) (2026-02-26) diff --git a/pyproject.toml b/pyproject.toml index d405a23..0eded68 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "worker-flash" -version = "1.1.1" +version = "1.2.0" description = "Dynamic GPU provisioning for ML workloads with transparent execution" readme = "README.md" requires-python = ">=3.10,<3.14" diff --git a/src/version.py b/src/version.py index 89326de..ea733f8 100644 --- a/src/version.py +++ b/src/version.py @@ -3,7 +3,7 @@ import platform from importlib.metadata import PackageNotFoundError, version -__version__ = "1.1.1" # x-release-please-version +__version__ = "1.2.0" # x-release-please-version def _get_version(package_name: str) -> str: