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
18 changes: 18 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,23 @@
# Changelog

## [phlo 0.10.0 + 7 packages] - 2026-05-18

### Added
- phlo: complete Observatory v2 runtime flows (#510)
- phlo: add provider-neutral decorator APIs (#512)
- phlo: add flow authoring decorators (#513)
- phlo-api: complete Observatory v2 runtime flows (#510)
- phlo-clickhouse: complete Observatory v2 runtime flows (#510)
- phlo-dlt: add provider-neutral decorator APIs (#512)
- phlo-observatory: complete Observatory v2 runtime flows (#510)
- phlo-pandera: add provider-neutral decorator APIs (#512)
- phlo-rustfs: complete Observatory v2 runtime flows (#510)
- phlo-sling: add provider-neutral decorator APIs (#512)

### Contributors
Thanks to our contributors for this release:
- @iamgp (10 commits)

## [phlo 0.9.0 + 11 packages] - 2026-05-16

### Added
Expand Down
2 changes: 1 addition & 1 deletion packages/phlo-api/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ dependencies = [
description = "Phlo API - Backend service exposing Phlo internals to Observatory"
name = "phlo-api"
requires-python = ">=3.11"
version = "0.4.0"
version = "0.5.0"

[[project.authors]]
email = "team@phlo.dev"
Expand Down
2 changes: 1 addition & 1 deletion packages/phlo-clickhouse/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ dependencies = [
description = "ClickHouse service and resource plugin for Phlo"
name = "phlo-clickhouse"
requires-python = ">=3.11"
version = "0.3.1"
version = "0.4.0"

[[project.authors]]
email = "team@phlo.dev"
Expand Down
2 changes: 1 addition & 1 deletion packages/phlo-dlt/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ dependencies = [
description = "DLT ingestion engine capability plugin for Phlo"
name = "phlo-dlt"
requires-python = ">=3.11"
version = "0.4.0"
version = "0.5.0"

[[project.authors]]
email = "team@phlo.dev"
Expand Down
2 changes: 1 addition & 1 deletion packages/phlo-observatory/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ dependencies = ["phlo>=0.1.0"]
description = "Phlo Observatory - Data platform UI (bundled with phlo core)"
name = "phlo-observatory"
requires-python = ">=3.11"
version = "0.4.0"
version = "0.5.0"

[[project.authors]]
email = "team@phlo.dev"
Expand Down
2 changes: 1 addition & 1 deletion packages/phlo-observatory/src/phlo_observatory/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,4 +64,4 @@
"get_settings",
"get_settings_service",
]
__version__ = "0.4.0"
__version__ = "0.5.0"
2 changes: 1 addition & 1 deletion packages/phlo-pandera/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ dependencies = [
description = "Quality checks and schema utilities for Phlo"
name = "phlo-pandera"
requires-python = ">=3.11"
version = "0.4.0"
version = "0.5.0"

[[project.authors]]
email = "team@phlo.dev"
Expand Down
2 changes: 1 addition & 1 deletion packages/phlo-rustfs/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ dependencies = [
description = "RustFS service plugin for Phlo"
name = "phlo-rustfs"
requires-python = ">=3.11"
version = "0.2.4"
version = "0.3.0"

[[project.authors]]
email = "team@phlo.dev"
Expand Down
2 changes: 1 addition & 1 deletion packages/phlo-rustfs/src/phlo_rustfs/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,4 @@
from phlo_rustfs.settings import RustfsSettings, get_settings

__all__ = ["RustfsServicePlugin", "RustfsSettings", "get_settings"]
__version__ = "0.2.4"
__version__ = "0.3.0"
2 changes: 1 addition & 1 deletion packages/phlo-sling/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ dependencies = [
description = "Sling replication ingestion provider for Phlo"
name = "phlo-sling"
requires-python = ">=3.11"
version = "0.4.0"
version = "0.5.0"

[[project.authors]]
email = "team@phlo.dev"
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ description = "Lakehouse platform"
name = "phlo"
readme = "README.md"
requires-python = ">=3.11"
version = "0.9.0"
version = "0.10.0"

[project.entry-points."phlo.plugins.quality"]

Expand Down
2 changes: 1 addition & 1 deletion src/phlo/cli/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,4 @@
phlo workflow create --type ingestion --domain weather
"""

__version__ = "0.9.0"
__version__ = "0.10.0"
2 changes: 1 addition & 1 deletion src/phlo/plugins/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -307,4 +307,4 @@ def __getattr__(name):
"PluginRegistry",
]

__version__ = "0.9.0"
__version__ = "0.10.0"
16 changes: 8 additions & 8 deletions uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading