Skip to content

Commit 9ad94f5

Browse files
committed
Prepare version 0.16.0
1 parent 2676572 commit 9ad94f5

File tree

3 files changed

+17
-6
lines changed

3 files changed

+17
-6
lines changed

CHANGELOG.md

Lines changed: 14 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,29 @@
11
# Change log
22

33
## [Unreleased]
4-
[Unreleased]: https://github.com/JakeWharton/mosaic/compare/0.15.0...HEAD
4+
[Unreleased]: https://github.com/JakeWharton/mosaic/compare/0.16.0...HEAD
55

66
New:
7-
- Add `setContentAndSnapshot` to 'mosaic-testing' which returns the initial composition snapshot. This avoids a potential problem with calling `setContent` and then `awaitSnapshot` since the latter will trigger a subsequent recomposition (if needed), preventing observation of the initial state.
7+
- Nothing yet!
88

99
Changed:
10-
- `Static` composable no longer takes a list. Instead, it behaves like a normal composable which only renders its function once.
10+
- Nothing yet!
1111

1212
Fixed:
1313
- Nothing yet!
1414

1515

16+
## [0.16.0] - 2025-02-14
17+
[0.16.0]: https://github.com/JakeWharton/mosaic/releases/tag/0.16.0
18+
19+
New:
20+
- Add `setContentAndSnapshot` to 'mosaic-testing' which returns the initial composition snapshot. This avoids a potential problem with calling `setContent` and then `awaitSnapshot` since the latter will trigger a subsequent recomposition (if needed), preventing observation of the initial state.
21+
22+
Changed:
23+
- `Static` composable no longer takes a list. Instead, it behaves like a normal composable which only renders its function once.
24+
- Drop use of Jansi library for supporting ANSI color output on Windows.
25+
26+
1627
## [0.15.0] - 2025-01-07
1728
[0.15.0]: https://github.com/JakeWharton/mosaic/releases/tag/0.15.0
1829

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ Mosaic itself can then be added like any other dependency:
6565

6666
```groovy
6767
dependencies {
68-
implementation("com.jakewharton.mosaic:mosaic-runtime:0.14.0")
68+
implementation("com.jakewharton.mosaic:mosaic-runtime:0.16.0")
6969
}
7070
```
7171

@@ -83,7 +83,7 @@ repository {
8383
}
8484
}
8585
dependencies {
86-
implementation("com.jakewharton.mosaic:mosaic-runtime:0.15.0-SNAPSHOT")
86+
implementation("com.jakewharton.mosaic:mosaic-runtime:0.17.0-SNAPSHOT")
8787
}
8888
```
8989

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
GROUP=com.jakewharton.mosaic
2-
VERSION_NAME=0.16.0-SNAPSHOT
2+
VERSION_NAME=0.16.0
33

44
SONATYPE_HOST=DEFAULT
55
SONATYPE_AUTOMATIC_RELEASE=true

0 commit comments

Comments
 (0)