diff --git a/CHANGELOG.md b/CHANGELOG.md index 3c5d90d..f40f668 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,8 @@ +## [1.1.7] - 2026-02-14 + +* Harden compose installer timeouts and e2e stack diagnostics + + ## [1.1.6] - 2026-02-14 * Add installer table-step timeout env vars (MATOMO_INSTALLER_TABLES_CREATION_TIMEOUT_S, MATOMO_INSTALLER_TABLES_ERASE_TIMEOUT_S) to compose/docs and e2e checks. diff --git a/flake.nix b/flake.nix index 9ef1005..11f8def 100644 --- a/flake.nix +++ b/flake.nix @@ -20,7 +20,7 @@ rec { matomo-bootstrap = python.pkgs.buildPythonApplication { pname = "matomo-bootstrap"; - version = "1.1.6"; # keep in sync with pyproject.toml + version = "1.1.7"; # keep in sync with pyproject.toml pyproject = true; src = self; diff --git a/pyproject.toml b/pyproject.toml index 8c9f1ba..6d2279c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "matomo-bootstrap" -version = "1.1.6" +version = "1.1.7" description = "Headless bootstrap tooling for Matomo (installation + API token provisioning)" readme = "README.md" requires-python = ">=3.10"