Skip to content

Commit bd25b87

Browse files
committed
Update version to 2.4.0
1 parent f34bba2 commit bd25b87

File tree

2 files changed

+22
-2
lines changed

2 files changed

+22
-2
lines changed

CHANGELOG.md

Lines changed: 21 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,28 @@
11
# Changelog
22

3+
## 2.4.0
4+
5+
_2025.08.01_
6+
7+
This release contains **breaking changes** for the experimental feature, `BoxGrid`.
8+
`BoxGridScope`'s `rowSpan` and `columnSpan` modifier is replaced to `span` modifier.
9+
And also `span` modifier's parameter now receive `BoxGridItemSpanScope` instead of `GridItemSpanScope`.
10+
It contains more information for calculating box grid item span.
11+
12+
### Changed
13+
14+
- Add `Modifier.position` to `BoxGridScope` for setting row/column cell position at the same time.
15+
- Add `Modifier.span` to `BoxGridScope` for setting row/column span at the same time.
16+
- Add `BoxGridItemSpanScope` for `span` modifier of `BoxGridScope`.
17+
- Add `BoxGridItemSpan`. It is a container represents row/column span size.
18+
- Remove `Modifier.rowSpan` and `Modifier.columnSpan` from `BoxGridScope`.
19+
- Remove deprecated `HorizontalGrid` and `VerticalGrid` with `alignment` parameter.
20+
Replace it to composable with `contentAlignment` parameter.
21+
- Fix remaining cell size distribution of `SimpleGridCell` more properly.
22+
323
## 2.3.2
424

5-
### Change
25+
### Changed
626

727
_2025.07.05_
828

build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ plugins {
1515

1616
allprojects {
1717
group = "com.cheonjaeung.compose.grid"
18-
version = "2.3.2"
18+
version = "2.4.0"
1919

2020
repositories {
2121
maven {

0 commit comments

Comments
 (0)