From 4d3026448a8037ce603b304476e4e6a38265d59f Mon Sep 17 00:00:00 2001 From: Leif Denby Date: Fri, 6 Feb 2026 15:17:05 +0100 Subject: [PATCH 1/2] ensure ci checkout incl tags for packge version --- .github/workflows/docs.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index 8a6e27d..c1dbe41 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -21,6 +21,10 @@ jobs: steps: - name: Checkout uses: actions/checkout@v4 + with: + # include tags to ensure that scm info is available so we get the correct version in the docs + fetch-depth: 0 + fetch-tags: true - name: Setup uv uses: astral-sh/setup-uv@v5 From d140b0ff02c70282920fa281ffba9f42b5ce2efc Mon Sep 17 00:00:00 2001 From: Leif Denby Date: Tue, 24 Feb 2026 16:08:50 +0100 Subject: [PATCH 2/2] changelog --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3ccd33a..a935c0c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,6 +10,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Fixed - Detect Zarr v3 format from store files (`zarr.json`) instead of relying on `getattr(ds, "zarr_format", 2)` which always defaulted to v2, causing v3 stores to incorrectly fail the consolidated metadata check [\#27](https://github.com/mlcast-community/mlcast-dataset-validator/pull/27), @franchg +- Fix for package version in ci build of html render of specs [\#25](https://github.com/mlcast-community/mlcast-dataset-validator/pull/25), @leifdenby ## [v0.2.0](https://github.com/mlcast-community/mlcast-dataset-validator/releases/tag/v0.2.0)