diff --git a/ziggurat/CHANGELOG.md b/ziggurat/CHANGELOG.md index b17fd6e..b75ff22 100644 --- a/ziggurat/CHANGELOG.md +++ b/ziggurat/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 0.3.0 + + - Bump ziggurat to 96face24. + - Routing hints API for fast startup with ZHA. + - Switch from the JSON API to the binary transport API. + - Properly send the transport key to joining Zigbee 3.0 devices. + - Many other fixes. + ## 0.2.0 - Bump ziggurat to the 0.1.0 release on crates.io. diff --git a/ziggurat/Dockerfile b/ziggurat/Dockerfile index 731bbc7..1395f68 100644 --- a/ziggurat/Dockerfile +++ b/ziggurat/Dockerfile @@ -2,9 +2,9 @@ ARG BUILD_FROM=ghcr.io/home-assistant/base:3.23 FROM rust:1-alpine AS builder -RUN apk add --no-cache musl-dev +RUN apk add --no-cache git musl-dev -ARG ZIGGURAT_VERSION=0.1.0 +ARG ZIGGURAT_VERSION=96face24e321f990d80ad5269bd9d1b2efc3c8fc ENV CARGO_PROFILE_RELEASE_LTO=true \ CARGO_PROFILE_RELEASE_CODEGEN_UNITS=1 \ @@ -15,7 +15,8 @@ RUN --mount=type=cache,target=/usr/local/cargo/registry \ --mount=type=cache,target=/tmp/cargo-target \ CARGO_TARGET_DIR=/tmp/cargo-target \ cargo install ziggurat-server \ - --version "${ZIGGURAT_VERSION}" \ + --git "https://github.com/zigpy/ziggurat" \ + --rev "${ZIGGURAT_VERSION}" \ --bin ziggurat \ --locked \ --root /usr/local diff --git a/ziggurat/config.yaml b/ziggurat/config.yaml index 024173d..20f0580 100644 --- a/ziggurat/config.yaml +++ b/ziggurat/config.yaml @@ -1,9 +1,10 @@ --- -version: 0.2.0 +version: 0.3.0 slug: ziggurat name: Ziggurat Zigbee Server description: Open source host-side Zigbee stack written in Rust url: https://github.com/zigpy/ziggurat +homeassistant: 2026.8.0b0 arch: - aarch64 - amd64