From ed9b089e2e0290a4042c844a517802272d157323 Mon Sep 17 00:00:00 2001 From: JimyMa Date: Thu, 28 May 2026 11:50:05 +0000 Subject: [PATCH 1/6] degrade glibc --- .github/workflows/pypi-publish.yml | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/.github/workflows/pypi-publish.yml b/.github/workflows/pypi-publish.yml index ecc9455d..eeaddccd 100644 --- a/.github/workflows/pypi-publish.yml +++ b/.github/workflows/pypi-publish.yml @@ -116,12 +116,17 @@ jobs: runs-on: ubuntu-24.04 steps: - uses: actions/checkout@v6 - - uses: actions/setup-python@v6 + # Build inside manylinux2014 so the shipped Rust binary targets glibc 2.17 + # instead of the newer glibc from the GitHub-hosted Ubuntu runner. + - uses: PyO3/maturin-action@v1 with: - python-version: "3.12" - - uses: dtolnay/rust-toolchain@stable - - run: python -m pip install "maturin>=1.0,<2.0" - - run: maturin build --release --out dist --manifest-path dlslime-ctrl/Cargo.toml + manylinux: "2014" + command: build + args: >- + --release + --out dist + --manifest-path dlslime-ctrl/Cargo.toml + --compatibility manylinux2014 - uses: actions/upload-artifact@v4 with: name: dist-dlslime-ctrl From 796d170060cd6f38e62afba487ffb81753cc41e9 Mon Sep 17 00:00:00 2001 From: JimyMa Date: Thu, 28 May 2026 11:50:17 +0000 Subject: [PATCH 2/6] release: v0.1.14 --- .github/workflows/docker-publish.yml | 2 +- dlslime-ctrl/Cargo.lock | 2 +- dlslime-ctrl/Cargo.toml | 2 +- dlslime-ctrl/pyproject.toml | 2 +- dlslime/pyproject.toml | 2 +- docker/.env.example | 2 +- docker/README.md | 12 ++++++------ docker/docker-compose.yml | 4 ++-- docs/pyproject.toml | 2 +- 9 files changed, 15 insertions(+), 15 deletions(-) diff --git a/.github/workflows/docker-publish.yml b/.github/workflows/docker-publish.yml index 86b80802..a46e03bc 100644 --- a/.github/workflows/docker-publish.yml +++ b/.github/workflows/docker-publish.yml @@ -2,7 +2,7 @@ # # Triggers: # - Push to main / master -> publish `:edge` (and the commit SHA) -# - Push of a tag like v0.1.11 -> publish `:0.1.11`, `:0.1`, `:latest` +# - Push of a tag like v0.1.14 -> publish `:0.1.14`, `:0.1`, `:latest` # - Manual workflow_dispatch -> custom tag via input # # No external secrets needed — uses the built-in GITHUB_TOKEN for auth. diff --git a/dlslime-ctrl/Cargo.lock b/dlslime-ctrl/Cargo.lock index 836ef958..298cb49d 100644 --- a/dlslime-ctrl/Cargo.lock +++ b/dlslime-ctrl/Cargo.lock @@ -310,7 +310,7 @@ dependencies = [ [[package]] name = "dlslime-ctrl" -version = "0.1.11" +version = "0.1.14" dependencies = [ "anyhow", "axum", diff --git a/dlslime-ctrl/Cargo.toml b/dlslime-ctrl/Cargo.toml index 639354d8..acb9a2f7 100644 --- a/dlslime-ctrl/Cargo.toml +++ b/dlslime-ctrl/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "dlslime-ctrl" -version = "0.1.11" +version = "0.1.14" edition = "2021" description = "DLSlime control plane server" license = "MIT" diff --git a/dlslime-ctrl/pyproject.toml b/dlslime-ctrl/pyproject.toml index 7d2c61da..906f64d6 100644 --- a/dlslime-ctrl/pyproject.toml +++ b/dlslime-ctrl/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "maturin" [project] name = "dlslime-ctrl" -version = "0.1.11" +version = "0.1.14" description = "DLSlime control-plane server (Redis-backed service registry and peer-agent coordinator)" requires-python = ">=3.10" # The Python client lives in the `dlslime` package as `dlslime.ctrl.NanoCtrlClient`. diff --git a/dlslime/pyproject.toml b/dlslime/pyproject.toml index 301e619a..b7cf6d12 100644 --- a/dlslime/pyproject.toml +++ b/dlslime/pyproject.toml @@ -25,7 +25,7 @@ description = "DLSlime Transfer Engine" name = "dlslime" readme = "README.md" requires-python = ">=3.8" -version = "0.1.11" +version = "0.1.14" dependencies = [ "pydantic>=2.0", "pyzmq>=25.0", diff --git a/docker/.env.example b/docker/.env.example index d47d7373..3202ff37 100644 --- a/docker/.env.example +++ b/docker/.env.example @@ -27,5 +27,5 @@ DLSLIME_CTRL_RUST_LOG=info # By default both compose files build the image locally from ctrl.Dockerfile. # To pull a pre-built image from GitHub Container Registry (GHCR) instead: -# DLSLIME_CTRL_IMAGE=ghcr.io/deeplink-org/dlslime-ctrl:0.1.11 +# DLSLIME_CTRL_IMAGE=ghcr.io/deeplink-org/dlslime-ctrl:0.1.14 # DLSLIME_CTRL_PULL_POLICY=missing diff --git a/docker/README.md b/docker/README.md index 8e58032f..184321f4 100644 --- a/docker/README.md +++ b/docker/README.md @@ -104,7 +104,7 @@ Why GHCR rather than Docker Hub: ```bash cat >> docker/.env <<'EOF' -DLSLIME_CTRL_IMAGE=ghcr.io/deeplink-org/dlslime-ctrl:0.1.11 +DLSLIME_CTRL_IMAGE=ghcr.io/deeplink-org/dlslime-ctrl:0.1.14 DLSLIME_CTRL_PULL_POLICY=missing EOF @@ -127,7 +127,7 @@ The workflow [`.github/workflows/docker-publish.yml`](../.github/workflows/docke | Trigger | Tags published | | -------------------------- | ---------------------------------------- | | Push to `main` / `master` | `edge`, `sha-` | -| Push tag `v0.1.11` | `0.1.11`, `0.1`, `latest`, `sha-` | +| Push tag `v0.1.14` | `0.1.14`, `0.1`, `latest`, `sha-` | | Manual `workflow_dispatch` | optional extra tag from the input | One-time setup after the **first** successful workflow run, in the GitHub UI: @@ -141,12 +141,12 @@ Releasing a new version: ```bash # bump versions in: # Cargo.toml, dlslime-ctrl/pyproject.toml, dlslime/pyproject.toml, pyproject.toml -git commit -am "release: v0.1.11" -git tag v0.1.11 +git commit -am "release: v0.1.14" +git tag v0.1.14 git push origin main --tags ``` -The workflow will build `linux/amd64` + `linux/arm64` and push `0.1.11`, `0.1`, `latest`. +The workflow will build `linux/amd64` + `linux/arm64` and push `0.1.14`, `0.1`, `latest`. ### Manual push (without CI) @@ -162,7 +162,7 @@ echo "$GHCR_PAT" | docker login ghcr.io -u --password-std # 3. Build multi-arch and push. docker buildx create --use --name dlslime-builder 2>/dev/null || docker buildx use dlslime-builder -VERSION=0.1.11 +VERSION=0.1.14 docker buildx build \ --platform linux/amd64,linux/arm64 \ -f docker/ctrl.Dockerfile \ diff --git a/docker/docker-compose.yml b/docker/docker-compose.yml index 3ae4b5fe..41c023a9 100644 --- a/docker/docker-compose.yml +++ b/docker/docker-compose.yml @@ -41,8 +41,8 @@ services: # listening on 127.0.0.1 on the host (e.g. http_proxy=127.0.0.1:7890). network: host # Defaults to a locally-built tag. Override to a published GHCR image - # (e.g. `ghcr.io/deeplink-org/dlslime-ctrl:0.1.11`) to skip the local build: - # echo "DLSLIME_CTRL_IMAGE=ghcr.io/deeplink-org/dlslime-ctrl:0.1.11" >> docker/.env + # (e.g. `ghcr.io/deeplink-org/dlslime-ctrl:0.1.14`) to skip the local build: + # echo "DLSLIME_CTRL_IMAGE=ghcr.io/deeplink-org/dlslime-ctrl:0.1.14" >> docker/.env # echo "DLSLIME_CTRL_PULL_POLICY=missing" >> docker/.env image: ${DLSLIME_CTRL_IMAGE:-dlslime-ctrl:local} pull_policy: ${DLSLIME_CTRL_PULL_POLICY:-build} diff --git a/docs/pyproject.toml b/docs/pyproject.toml index 213f6b1f..65c7aa5c 100644 --- a/docs/pyproject.toml +++ b/docs/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "dlslime-docs" -version = "0.1.11" +version = "0.1.14" description = "Documentation site tooling for DLSlime" requires-python = ">=3.10" dependencies = [ From 4fea3287775da3c1a5c81a574ad30957cb5fb52f Mon Sep 17 00:00:00 2001 From: JimyMa Date: Thu, 28 May 2026 11:52:58 +0000 Subject: [PATCH 3/6] fix maturin build --- .github/workflows/pypi-publish.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pypi-publish.yml b/.github/workflows/pypi-publish.yml index eeaddccd..16a29481 100644 --- a/.github/workflows/pypi-publish.yml +++ b/.github/workflows/pypi-publish.yml @@ -126,7 +126,7 @@ jobs: --release --out dist --manifest-path dlslime-ctrl/Cargo.toml - --compatibility manylinux2014 + --compatibility manylinux_2_17 - uses: actions/upload-artifact@v4 with: name: dist-dlslime-ctrl From 61d6705f952ffee9f6234d115b5d8460da24a5f4 Mon Sep 17 00:00:00 2001 From: JimyMa Date: Thu, 28 May 2026 11:53:06 +0000 Subject: [PATCH 4/6] release: v0.1.15 --- .github/workflows/docker-publish.yml | 2 +- dlslime-ctrl/Cargo.lock | 2 +- dlslime-ctrl/Cargo.toml | 2 +- dlslime-ctrl/pyproject.toml | 2 +- dlslime/pyproject.toml | 2 +- docker/.env.example | 2 +- docker/README.md | 12 ++++++------ docker/docker-compose.yml | 4 ++-- docs/pyproject.toml | 2 +- 9 files changed, 15 insertions(+), 15 deletions(-) diff --git a/.github/workflows/docker-publish.yml b/.github/workflows/docker-publish.yml index a46e03bc..9766da83 100644 --- a/.github/workflows/docker-publish.yml +++ b/.github/workflows/docker-publish.yml @@ -2,7 +2,7 @@ # # Triggers: # - Push to main / master -> publish `:edge` (and the commit SHA) -# - Push of a tag like v0.1.14 -> publish `:0.1.14`, `:0.1`, `:latest` +# - Push of a tag like v0.1.15 -> publish `:0.1.15`, `:0.1`, `:latest` # - Manual workflow_dispatch -> custom tag via input # # No external secrets needed — uses the built-in GITHUB_TOKEN for auth. diff --git a/dlslime-ctrl/Cargo.lock b/dlslime-ctrl/Cargo.lock index 298cb49d..a2d41f32 100644 --- a/dlslime-ctrl/Cargo.lock +++ b/dlslime-ctrl/Cargo.lock @@ -310,7 +310,7 @@ dependencies = [ [[package]] name = "dlslime-ctrl" -version = "0.1.14" +version = "0.1.15" dependencies = [ "anyhow", "axum", diff --git a/dlslime-ctrl/Cargo.toml b/dlslime-ctrl/Cargo.toml index acb9a2f7..e69522b9 100644 --- a/dlslime-ctrl/Cargo.toml +++ b/dlslime-ctrl/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "dlslime-ctrl" -version = "0.1.14" +version = "0.1.15" edition = "2021" description = "DLSlime control plane server" license = "MIT" diff --git a/dlslime-ctrl/pyproject.toml b/dlslime-ctrl/pyproject.toml index 906f64d6..65c8bbf0 100644 --- a/dlslime-ctrl/pyproject.toml +++ b/dlslime-ctrl/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "maturin" [project] name = "dlslime-ctrl" -version = "0.1.14" +version = "0.1.15" description = "DLSlime control-plane server (Redis-backed service registry and peer-agent coordinator)" requires-python = ">=3.10" # The Python client lives in the `dlslime` package as `dlslime.ctrl.NanoCtrlClient`. diff --git a/dlslime/pyproject.toml b/dlslime/pyproject.toml index b7cf6d12..33830078 100644 --- a/dlslime/pyproject.toml +++ b/dlslime/pyproject.toml @@ -25,7 +25,7 @@ description = "DLSlime Transfer Engine" name = "dlslime" readme = "README.md" requires-python = ">=3.8" -version = "0.1.14" +version = "0.1.15" dependencies = [ "pydantic>=2.0", "pyzmq>=25.0", diff --git a/docker/.env.example b/docker/.env.example index 3202ff37..389c5568 100644 --- a/docker/.env.example +++ b/docker/.env.example @@ -27,5 +27,5 @@ DLSLIME_CTRL_RUST_LOG=info # By default both compose files build the image locally from ctrl.Dockerfile. # To pull a pre-built image from GitHub Container Registry (GHCR) instead: -# DLSLIME_CTRL_IMAGE=ghcr.io/deeplink-org/dlslime-ctrl:0.1.14 +# DLSLIME_CTRL_IMAGE=ghcr.io/deeplink-org/dlslime-ctrl:0.1.15 # DLSLIME_CTRL_PULL_POLICY=missing diff --git a/docker/README.md b/docker/README.md index 184321f4..17fd0347 100644 --- a/docker/README.md +++ b/docker/README.md @@ -104,7 +104,7 @@ Why GHCR rather than Docker Hub: ```bash cat >> docker/.env <<'EOF' -DLSLIME_CTRL_IMAGE=ghcr.io/deeplink-org/dlslime-ctrl:0.1.14 +DLSLIME_CTRL_IMAGE=ghcr.io/deeplink-org/dlslime-ctrl:0.1.15 DLSLIME_CTRL_PULL_POLICY=missing EOF @@ -127,7 +127,7 @@ The workflow [`.github/workflows/docker-publish.yml`](../.github/workflows/docke | Trigger | Tags published | | -------------------------- | ---------------------------------------- | | Push to `main` / `master` | `edge`, `sha-` | -| Push tag `v0.1.14` | `0.1.14`, `0.1`, `latest`, `sha-` | +| Push tag `v0.1.15` | `0.1.15`, `0.1`, `latest`, `sha-` | | Manual `workflow_dispatch` | optional extra tag from the input | One-time setup after the **first** successful workflow run, in the GitHub UI: @@ -141,12 +141,12 @@ Releasing a new version: ```bash # bump versions in: # Cargo.toml, dlslime-ctrl/pyproject.toml, dlslime/pyproject.toml, pyproject.toml -git commit -am "release: v0.1.14" -git tag v0.1.14 +git commit -am "release: v0.1.15" +git tag v0.1.15 git push origin main --tags ``` -The workflow will build `linux/amd64` + `linux/arm64` and push `0.1.14`, `0.1`, `latest`. +The workflow will build `linux/amd64` + `linux/arm64` and push `0.1.15`, `0.1`, `latest`. ### Manual push (without CI) @@ -162,7 +162,7 @@ echo "$GHCR_PAT" | docker login ghcr.io -u --password-std # 3. Build multi-arch and push. docker buildx create --use --name dlslime-builder 2>/dev/null || docker buildx use dlslime-builder -VERSION=0.1.14 +VERSION=0.1.15 docker buildx build \ --platform linux/amd64,linux/arm64 \ -f docker/ctrl.Dockerfile \ diff --git a/docker/docker-compose.yml b/docker/docker-compose.yml index 41c023a9..64e497b0 100644 --- a/docker/docker-compose.yml +++ b/docker/docker-compose.yml @@ -41,8 +41,8 @@ services: # listening on 127.0.0.1 on the host (e.g. http_proxy=127.0.0.1:7890). network: host # Defaults to a locally-built tag. Override to a published GHCR image - # (e.g. `ghcr.io/deeplink-org/dlslime-ctrl:0.1.14`) to skip the local build: - # echo "DLSLIME_CTRL_IMAGE=ghcr.io/deeplink-org/dlslime-ctrl:0.1.14" >> docker/.env + # (e.g. `ghcr.io/deeplink-org/dlslime-ctrl:0.1.15`) to skip the local build: + # echo "DLSLIME_CTRL_IMAGE=ghcr.io/deeplink-org/dlslime-ctrl:0.1.15" >> docker/.env # echo "DLSLIME_CTRL_PULL_POLICY=missing" >> docker/.env image: ${DLSLIME_CTRL_IMAGE:-dlslime-ctrl:local} pull_policy: ${DLSLIME_CTRL_PULL_POLICY:-build} diff --git a/docs/pyproject.toml b/docs/pyproject.toml index 65c7aa5c..8f130c72 100644 --- a/docs/pyproject.toml +++ b/docs/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "dlslime-docs" -version = "0.1.14" +version = "0.1.15" description = "Documentation site tooling for DLSlime" requires-python = ">=3.10" dependencies = [ From 1085a12db59f31e19f67715a5b9c60a6ce45498a Mon Sep 17 00:00:00 2001 From: JimyMa Date: Thu, 28 May 2026 11:54:58 +0000 Subject: [PATCH 5/6] fix maturin build --- .github/workflows/pypi-publish.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/pypi-publish.yml b/.github/workflows/pypi-publish.yml index 16a29481..9c135ece 100644 --- a/.github/workflows/pypi-publish.yml +++ b/.github/workflows/pypi-publish.yml @@ -126,7 +126,6 @@ jobs: --release --out dist --manifest-path dlslime-ctrl/Cargo.toml - --compatibility manylinux_2_17 - uses: actions/upload-artifact@v4 with: name: dist-dlslime-ctrl From 67d4d301e61d7db204b598bc0e911c08126f3559 Mon Sep 17 00:00:00 2001 From: JimyMa Date: Thu, 28 May 2026 11:55:22 +0000 Subject: [PATCH 6/6] release: v0.1.16 --- .github/workflows/docker-publish.yml | 2 +- dlslime-ctrl/Cargo.lock | 2 +- dlslime-ctrl/Cargo.toml | 2 +- dlslime-ctrl/pyproject.toml | 2 +- dlslime/pyproject.toml | 2 +- docker/.env.example | 2 +- docker/README.md | 12 ++++++------ docker/docker-compose.yml | 4 ++-- docs/pyproject.toml | 2 +- 9 files changed, 15 insertions(+), 15 deletions(-) diff --git a/.github/workflows/docker-publish.yml b/.github/workflows/docker-publish.yml index 9766da83..73234e30 100644 --- a/.github/workflows/docker-publish.yml +++ b/.github/workflows/docker-publish.yml @@ -2,7 +2,7 @@ # # Triggers: # - Push to main / master -> publish `:edge` (and the commit SHA) -# - Push of a tag like v0.1.15 -> publish `:0.1.15`, `:0.1`, `:latest` +# - Push of a tag like v0.1.16 -> publish `:0.1.16`, `:0.1`, `:latest` # - Manual workflow_dispatch -> custom tag via input # # No external secrets needed — uses the built-in GITHUB_TOKEN for auth. diff --git a/dlslime-ctrl/Cargo.lock b/dlslime-ctrl/Cargo.lock index a2d41f32..3bc02ea8 100644 --- a/dlslime-ctrl/Cargo.lock +++ b/dlslime-ctrl/Cargo.lock @@ -310,7 +310,7 @@ dependencies = [ [[package]] name = "dlslime-ctrl" -version = "0.1.15" +version = "0.1.16" dependencies = [ "anyhow", "axum", diff --git a/dlslime-ctrl/Cargo.toml b/dlslime-ctrl/Cargo.toml index e69522b9..b3af42ef 100644 --- a/dlslime-ctrl/Cargo.toml +++ b/dlslime-ctrl/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "dlslime-ctrl" -version = "0.1.15" +version = "0.1.16" edition = "2021" description = "DLSlime control plane server" license = "MIT" diff --git a/dlslime-ctrl/pyproject.toml b/dlslime-ctrl/pyproject.toml index 65c8bbf0..44bcda0f 100644 --- a/dlslime-ctrl/pyproject.toml +++ b/dlslime-ctrl/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "maturin" [project] name = "dlslime-ctrl" -version = "0.1.15" +version = "0.1.16" description = "DLSlime control-plane server (Redis-backed service registry and peer-agent coordinator)" requires-python = ">=3.10" # The Python client lives in the `dlslime` package as `dlslime.ctrl.NanoCtrlClient`. diff --git a/dlslime/pyproject.toml b/dlslime/pyproject.toml index 33830078..e2bcd9d3 100644 --- a/dlslime/pyproject.toml +++ b/dlslime/pyproject.toml @@ -25,7 +25,7 @@ description = "DLSlime Transfer Engine" name = "dlslime" readme = "README.md" requires-python = ">=3.8" -version = "0.1.15" +version = "0.1.16" dependencies = [ "pydantic>=2.0", "pyzmq>=25.0", diff --git a/docker/.env.example b/docker/.env.example index 389c5568..624cb8a6 100644 --- a/docker/.env.example +++ b/docker/.env.example @@ -27,5 +27,5 @@ DLSLIME_CTRL_RUST_LOG=info # By default both compose files build the image locally from ctrl.Dockerfile. # To pull a pre-built image from GitHub Container Registry (GHCR) instead: -# DLSLIME_CTRL_IMAGE=ghcr.io/deeplink-org/dlslime-ctrl:0.1.15 +# DLSLIME_CTRL_IMAGE=ghcr.io/deeplink-org/dlslime-ctrl:0.1.16 # DLSLIME_CTRL_PULL_POLICY=missing diff --git a/docker/README.md b/docker/README.md index 17fd0347..1512b144 100644 --- a/docker/README.md +++ b/docker/README.md @@ -104,7 +104,7 @@ Why GHCR rather than Docker Hub: ```bash cat >> docker/.env <<'EOF' -DLSLIME_CTRL_IMAGE=ghcr.io/deeplink-org/dlslime-ctrl:0.1.15 +DLSLIME_CTRL_IMAGE=ghcr.io/deeplink-org/dlslime-ctrl:0.1.16 DLSLIME_CTRL_PULL_POLICY=missing EOF @@ -127,7 +127,7 @@ The workflow [`.github/workflows/docker-publish.yml`](../.github/workflows/docke | Trigger | Tags published | | -------------------------- | ---------------------------------------- | | Push to `main` / `master` | `edge`, `sha-` | -| Push tag `v0.1.15` | `0.1.15`, `0.1`, `latest`, `sha-` | +| Push tag `v0.1.16` | `0.1.16`, `0.1`, `latest`, `sha-` | | Manual `workflow_dispatch` | optional extra tag from the input | One-time setup after the **first** successful workflow run, in the GitHub UI: @@ -141,12 +141,12 @@ Releasing a new version: ```bash # bump versions in: # Cargo.toml, dlslime-ctrl/pyproject.toml, dlslime/pyproject.toml, pyproject.toml -git commit -am "release: v0.1.15" -git tag v0.1.15 +git commit -am "release: v0.1.16" +git tag v0.1.16 git push origin main --tags ``` -The workflow will build `linux/amd64` + `linux/arm64` and push `0.1.15`, `0.1`, `latest`. +The workflow will build `linux/amd64` + `linux/arm64` and push `0.1.16`, `0.1`, `latest`. ### Manual push (without CI) @@ -162,7 +162,7 @@ echo "$GHCR_PAT" | docker login ghcr.io -u --password-std # 3. Build multi-arch and push. docker buildx create --use --name dlslime-builder 2>/dev/null || docker buildx use dlslime-builder -VERSION=0.1.15 +VERSION=0.1.16 docker buildx build \ --platform linux/amd64,linux/arm64 \ -f docker/ctrl.Dockerfile \ diff --git a/docker/docker-compose.yml b/docker/docker-compose.yml index 64e497b0..f09b06d6 100644 --- a/docker/docker-compose.yml +++ b/docker/docker-compose.yml @@ -41,8 +41,8 @@ services: # listening on 127.0.0.1 on the host (e.g. http_proxy=127.0.0.1:7890). network: host # Defaults to a locally-built tag. Override to a published GHCR image - # (e.g. `ghcr.io/deeplink-org/dlslime-ctrl:0.1.15`) to skip the local build: - # echo "DLSLIME_CTRL_IMAGE=ghcr.io/deeplink-org/dlslime-ctrl:0.1.15" >> docker/.env + # (e.g. `ghcr.io/deeplink-org/dlslime-ctrl:0.1.16`) to skip the local build: + # echo "DLSLIME_CTRL_IMAGE=ghcr.io/deeplink-org/dlslime-ctrl:0.1.16" >> docker/.env # echo "DLSLIME_CTRL_PULL_POLICY=missing" >> docker/.env image: ${DLSLIME_CTRL_IMAGE:-dlslime-ctrl:local} pull_policy: ${DLSLIME_CTRL_PULL_POLICY:-build} diff --git a/docs/pyproject.toml b/docs/pyproject.toml index 8f130c72..c029aa39 100644 --- a/docs/pyproject.toml +++ b/docs/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "dlslime-docs" -version = "0.1.15" +version = "0.1.16" description = "Documentation site tooling for DLSlime" requires-python = ">=3.10" dependencies = [