Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,13 @@ Housekeeping cycle plus the public pixel-level visual-regression API (Track N).
baseline layout, and cross-platform tolerance calibration.
- README "Which API should I use?" gains a pixel-level visual-regression row.

### Build

- CI Javadoc validation (`maven-javadoc-plugin`, `doclint=all`) now covers the
public `com.demcha.compose.testing.*` helpers (`testing.layout` + `testing.visual`)
in addition to the canonical `document` API, so Javadoc regressions on the
testing surface fail fast in CI. No artifact or behaviour change.

## v1.6.8 — 2026-06-01

**CV v2 migration completion + design-token expansion.** v1.6.8
Expand Down
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -434,7 +434,7 @@
</executions>
</plugin>

<!-- Canonical API Javadoc validation -->
<!-- Public API Javadoc validation: canonical document API + public testing-support helpers (testing.layout / testing.visual) -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
Expand All @@ -444,7 +444,7 @@
<failOnError>true</failOnError>
<show>public</show>
<quiet>true</quiet>
<subpackages>com.demcha.compose.document</subpackages>
<subpackages>com.demcha.compose.document:com.demcha.compose.testing</subpackages>
</configuration>
</plugin>
</plugins>
Expand Down