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
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@

## [Unreleased]

## [1.3.1] - 2026-06-11

### Changed
- Line/Bar/Donut/Pie/Radar 차트 렌더링 성능 개선 — Canvas draw 중 선택 상태 변경과 콜백 호출을 제거하고, 데이터/크기 기반 파생값을 캐시해 반복 할당을 줄임
- 선택 콜백 호출 안정화 — 동일한 터치 선택이 redraw/recomposition 되는 동안 `onSelectionChanged` 및 레거시 선택 콜백이 반복 호출되지 않도록 변경
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ Jetpack Compose에서 사용할 수 있는 가볍고 독립적인 차트 UI 컴
```kotlin
// build.gradle.kts
dependencies {
implementation("io.github.ois0886:compose-chart:1.3.0")
implementation("io.github.ois0886:compose-chart:1.3.1")
}
```

Expand Down
2 changes: 1 addition & 1 deletion compose-chart/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ mavenPublishing {
publishToMavenCentral(com.vanniktech.maven.publish.SonatypeHost.CENTRAL_PORTAL)
signAllPublications()

coordinates("io.github.ois0886", "compose-chart", "1.3.0")
coordinates("io.github.ois0886", "compose-chart", "1.3.1")

pom {
name.set("Compose Chart")
Expand Down