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
1 change: 1 addition & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,7 @@ jobs:
with:
name: api-docs
path: library/build/dokka/html/
if-no-files-found: error

- name: Upload coverage report
uses: actions/upload-artifact@v6
Expand Down
2 changes: 1 addition & 1 deletion AGENTS.md
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ git push origin v<version>

- **JaCoCo**: 코드 커버리지 측정 (`./gradlew :library:jacocoTestReport`) + 임계값 검증 80% (`./gradlew :library:jacocoCoverageVerification`)
- **Android Lint**: 정적 분석 (`./gradlew :library:lint`)
- **Dokka 2.0**: API 문서 생성 (`./gradlew :library:dokkaGenerate`)
- **Dokka 2.2**: AGP 9 내장 Kotlin 소스셋 기반 API 문서 생성 (`./gradlew :library:dokkaGenerate`)
- **ProGuard Consumer Rules**: `library/consumer-rules.pro`에 public API 보호 규칙과 패키지 범위 Compose keep 규칙 정의
- **성능 벤치마크**: `GridBenchmarkTest.kt`에서 대량 데이터(1000~3650일) 성능 검증
- **Compose Compiler Reports**: 필요 시 `-PcomposeCompilerReports=true`로 metrics/reports 생성
Expand Down
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@

## [Unreleased]

### Fixed
- Dokka 2.2.0으로 업그레이드해 AGP 9 내장 Kotlin 소스셋을 문서화하고, API 문서 artifact 누락 시 Release 워크플로가 실패하도록 검증 강화

## [1.2.0] - 2026-07-15

### Added
Expand Down
3 changes: 1 addition & 2 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ activityCompose = "1.8.0"
kotlin = "2.0.21"
composeBom = "2024.09.00"
mavenPublish = "0.30.0"
dokka = "2.0.0"
dokka = "2.2.0"

[libraries]
androidx-core-ktx = { group = "androidx.core", name = "core-ktx", version.ref = "coreKtx" }
Expand All @@ -34,4 +34,3 @@ android-library = { id = "com.android.library", version.ref = "agp" }
kotlin-compose = { id = "org.jetbrains.kotlin.plugin.compose", version.ref = "kotlin" }
maven-publish = { id = "com.vanniktech.maven.publish", version.ref = "mavenPublish" }
dokka = { id = "org.jetbrains.dokka", version.ref = "dokka" }

Original file line number Diff line number Diff line change
Expand Up @@ -345,7 +345,7 @@ internal fun StreakSummary(
/**
* Color legend showing "Less ↔ More" with gradient cells.
*
* Displays: [lessLabel] [empty] [level1] [level2] ... [levelN] [moreLabel]
* Displays [lessLabel], the empty color, each level from low to high, and [moreLabel].
*/
@Composable
internal fun ColorLegend(
Expand Down