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
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -242,9 +242,9 @@ A domain repo picks its warehouse engine by which base image it builds
`FROM`:

```dockerfile
FROM ghcr.io/carolsimone/continuo-python-runtime-postgres:v0.3.1
FROM ghcr.io/carolsimone/continuo-python-runtime-postgres:v0.4.0
# or
FROM ghcr.io/carolsimone/continuo-python-runtime-trino:v0.3.1
FROM ghcr.io/carolsimone/continuo-python-runtime-trino:v0.4.0
```

The engine is part of the image **name**; the tag is the bare version, so
Expand Down
2 changes: 1 addition & 1 deletion adapters/postgres/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ dependencies = [
# of this adapter would otherwise accept whatever contract release is
# newest. This adapter subclasses the contract's WarehouseAdapter port
# directly, so the pair must stay the tested one.
"continuo-engine-contract==0.7.1",
"continuo-engine-contract==0.7.2",
"psycopg2-binary==2.9.11",
"pyarrow==25.0.0",
]
Expand Down
2 changes: 1 addition & 1 deletion adapters/trino/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ dependencies = [
# of this adapter would otherwise accept whatever contract release is
# newest. This adapter subclasses the contract's WarehouseAdapter port
# directly, so the pair must stay the tested one.
"continuo-engine-contract==0.7.1",
"continuo-engine-contract==0.7.2",
"trino==0.338.0",
"pyarrow==25.0.0",
]
Expand Down
2 changes: 1 addition & 1 deletion contract/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[project]
version = "0.7.1"
version = "0.7.2"
name = "continuo-engine-contract"
description = "The contract a Continuo warehouse engine must satisfy: the WarehouseAdapter port and the result-block wire format."
authors = [{ name = "Simone Carolini" }]
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "continuo-python-runtime"
version = "0.3.1"
version = "0.4.0"
description = "Runtime harness, contract tooling, and CI lint for Continuo python nodes."
authors = [{ name = "Simone Carolini" }]
maintainers = [{ name = "Simone Carolini" }]
Expand All @@ -19,7 +19,7 @@ dependencies = [
# directly. Both packages ship from this repo on one v* tag, so a new
# contract version never exists without a new runtime version to match it;
# an exact pin therefore costs nothing and keeps the tested pair together.
"continuo-engine-contract==0.7.1",
"continuo-engine-contract==0.7.2",
"boto3==1.43.59",
"pyarrow==25.0.0",
"PyYAML==6.0.3",
Expand Down
2 changes: 1 addition & 1 deletion template/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Tags are v<version>; one image per engine (continuo-python-runtime-postgres / -trino).
FROM ghcr.io/carolsimone/continuo-python-runtime-postgres:v0.3.1
FROM ghcr.io/carolsimone/continuo-python-runtime-postgres:v0.4.0
COPY contracts/ /app/contracts/
COPY scripts/ /app/scripts/
# COPY every OTHER directory your scripts import from, too. CI folds a script's
Expand Down
4 changes: 2 additions & 2 deletions uv.lock

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

Loading