diff --git a/CHANGELOG.md b/CHANGELOG.md index a40e2e6..a8e0550 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [0.8.0](https://github.com/OpenX-Inc/flow/compare/v0.7.0...v0.8.0) (2026-06-30) + + +### Features + +* **deploy:** pass Modal credentials as args (per-invocation, not ambient env) ([#40](https://github.com/OpenX-Inc/flow/issues/40)) ([96d1d8a](https://github.com/OpenX-Inc/flow/commit/96d1d8ac4bb7258035bd08fa6470dbb8e191d99f)) + ## [0.7.0](https://github.com/OpenX-Inc/flow/compare/v0.6.0...v0.7.0) (2026-06-30) diff --git a/pyproject.toml b/pyproject.toml index 0935dac..cbb270b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "flow" -version = "0.7.0" +version = "0.8.0" description = "Open-source autonomous video generation pipeline. Like Google Flow, but yours." readme = "README.md" license = { text = "MIT" } diff --git a/src/flow/__init__.py b/src/flow/__init__.py index d2638be..5d8381d 100644 --- a/src/flow/__init__.py +++ b/src/flow/__init__.py @@ -1,3 +1,3 @@ """Flow — Open-source autonomous video generation pipeline.""" -__version__ = "0.7.0" +__version__ = "0.8.0"