diff --git a/CHANGELOG.md b/CHANGELOG.md index 355a170..3a2b8b7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,17 @@ All notable changes to Iris are documented here. The format is based on [Keep a --- +## v1.4.2 — Dashboard declutter (2026-06-11) + +### Changed + +- **Org dashboard no longer repeats the repository list** (#95). The dashboard + ended with a full repo list duplicating the dedicated `/repos` page; it's + been dropped. The same list component still powers `/[tenant]/repos`, so the + listing lives in one place. + +--- + ## v1.4.1 — Dashboard chart polish (2026-06-11) ### Changed diff --git a/iris/cli.py b/iris/cli.py index d1890dc..dde419e 100644 --- a/iris/cli.py +++ b/iris/cli.py @@ -17,7 +17,7 @@ from iris.reports.narrative import generate_narrative from iris.reports.writer import write_output -VERSION = "v1.4.1" +VERSION = "v1.4.2" # Analysis windows the platform's window selector (issue #80) expects. # Running `--windows 7,15,30,60,90` populates one snapshot per window so the diff --git a/pyproject.toml b/pyproject.toml index 93d5301..ae7c76c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "iris" -version = "1.4.1" +version = "1.4.2" description = "Engineering intelligence for the AI era — measure signal vs noise in software delivery" requires-python = ">=3.11" license = "Apache-2.0"