From f270a5c7c691047bde0e94cf76ab44b909c103c5 Mon Sep 17 00:00:00 2001 From: Kevin Veen-Birkenbach Date: Tue, 23 Dec 2025 17:50:24 +0100 Subject: [PATCH] Release version 1.0.1 --- CHANGELOG.md | 7 +++++++ flake.nix | 2 +- pyproject.toml | 2 +- 3 files changed, 9 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3e0b8e5..37b2361 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,10 @@ +## [1.0.1] - 2025-12-23 + +* * Support for running `matomo-bootstrap` **fully via Nix** in a clean, containerized environment. +* A **token-only stdout contract**: the bootstrap command now prints only the API token, making it safe for automation. +* Reproducible Nix builds via a pinned `flake.lock`. + + ## [1.0.0] - 2025-12-23 * 🥳 diff --git a/flake.nix b/flake.nix index 1d7ee3a..5a5c806 100644 --- a/flake.nix +++ b/flake.nix @@ -19,7 +19,7 @@ rec { matomo-bootstrap = python.pkgs.buildPythonApplication { pname = "matomo-bootstrap"; - version = "1.0.0"; # keep in sync with pyproject.toml + version = "1.0.1"; # keep in sync with pyproject.toml pyproject = true; src = self; diff --git a/pyproject.toml b/pyproject.toml index 002912f..5cb254f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "matomo-bootstrap" -version = "1.0.0" +version = "1.0.1" description = "Headless bootstrap tooling for Matomo (installation + API token provisioning)" readme = "README.md" requires-python = ">=3.10"