Skip to content

Commit ab52a0b

Browse files
committed
Release v3.2.2
1 parent 62f3bbb commit ab52a0b

5 files changed

Lines changed: 47 additions & 23 deletions

File tree

CHANGELOG.md

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,32 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres
66
to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). All scales should have the 'format' parameter.
77

8+
## [3.2.2] - 2026-06-30
9+
10+
### Compatibility
11+
12+
All artifacts were built with the following versions of dependencies:
13+
- Kotlin 2.3.20
14+
- Compose Multiplatform: [1.11.1](https://github.com/JetBrains/compose-multiplatform/releases/tag/v1.11.1)
15+
- Lets-Plot Kotlin API: [4.15.0](https://github.com/JetBrains/lets-plot-kotlin/releases/tag/v4.15.0)
16+
- Lets-Plot Multiplatform: [4.11.0](https://github.com/JetBrains/lets-plot/releases/tag/v4.11.0)
17+
18+
- kotlinx-datetime: [0.7.1](https://github.com/Kotlin/kotlinx-datetime/releases/tag/v0.7.1)
19+
- kotlinx-coroutines: [1.8.0](https://github.com/Kotlin/kotlinx.coroutines/releases/tag/1.8.0)
20+
21+
### Changed
22+
23+
Updated dependencies:
24+
- Lets-Plot 4.11.0
25+
- Lets-Plot Kotlin API 4.15.0
26+
- kotlinx datetime 0.7.1
27+
- kotlin logging 7.0.14
28+
29+
### Fixed
30+
31+
- Crash in WasmJS app when showing tooltips.
32+
33+
834
## [3.2.0] - 2026-05-27
935

1036
### Compatibility

README.md

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,11 @@ For more details see [Compose multiplatform compatibility and versioning overvie
2222

2323
## Dependencies
2424

25-
- Compose Multiplatform: [1.11.0](https://github.com/JetBrains/compose-multiplatform/releases/tag/v1.11.0)
26-
- Lets-Plot Kotlin API: [4.14.0](https://github.com/JetBrains/lets-plot-kotlin/releases/tag/v4.14.0)
27-
- Lets-Plot Multiplatform: [4.10.1](https://github.com/JetBrains/lets-plot/releases/tag/v4.10.0)
25+
- Compose Multiplatform: [1.11.1](https://github.com/JetBrains/compose-multiplatform/releases/tag/v1.11.1)
26+
- Lets-Plot Kotlin API: [4.15.0](https://github.com/JetBrains/lets-plot-kotlin/releases/tag/v4.15.0)
27+
- Lets-Plot Multiplatform: [4.11.0](https://github.com/JetBrains/lets-plot/releases/tag/v4.11.0)
2828

29-
- kotlinx-datetime: [0.6.2](https://github.com/Kotlin/kotlinx-datetime/releases/tag/v0.6.2)
29+
- kotlinx-datetime: [0.7.1](https://github.com/Kotlin/kotlinx-datetime/releases/tag/v0.7.1)
3030
- kotlinx-coroutines: [1.8.0](https://github.com/Kotlin/kotlinx.coroutines/releases/tag/1.8.0)
3131

3232

@@ -38,13 +38,13 @@ dependencies {
3838
implementation(compose.components.resources)
3939

4040
// Lets-Plot Kotlin API
41-
implementation("org.jetbrains.lets-plot:lets-plot-kotlin:4.14.0")
41+
implementation("org.jetbrains.lets-plot:lets-plot-kotlin:4.15.0")
4242

4343
// Optional: contains the PlotImageExport utility which enables exporting to raster formats.
44-
implementation("org.jetbrains.lets-plot:platf-awt:4.10.1")
44+
implementation("org.jetbrains.lets-plot:platf-awt:4.11.0")
4545

4646
// Lets-Plot Compose UI
47-
implementation("org.jetbrains.lets-plot:lets-plot-compose:3.2.0")
47+
implementation("org.jetbrains.lets-plot:lets-plot-compose:3.2.2")
4848
}
4949
```
5050

@@ -54,13 +54,13 @@ See examples:
5454

5555
> [!TIP]
5656
> The `org.jetbrains.lets-plot:lets-plot-kotlin` dependency transitively brings in 3rd-party runtime dependencies:
57-
> - `org.jetbrains.kotlinx:kotlinx-datetime:0.6.2`
57+
> - `org.jetbrains.kotlinx:kotlinx-datetime:0.7.1`
5858
> - `org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0`
5959
>
6060
> For a dependency-free configuration (JVM/Desktop target only), replace `lets-plot-kotlin` with the following:
6161
> ```kotlin
62-
> implementation("org.jetbrains.lets-plot:lets-plot-kotlin-kernel:4.14.0")
63-
> implementation("org.jetbrains.lets-plot:lets-plot-common:4.10.1")
62+
> implementation("org.jetbrains.lets-plot:lets-plot-kotlin-kernel:4.15.0")
63+
> implementation("org.jetbrains.lets-plot:lets-plot-common:4.11.0")
6464
> ```
6565
6666
@@ -69,10 +69,10 @@ See examples:
6969
```kotlin
7070
dependencies {
7171
// Lets-Plot Kotlin API
72-
implementation("org.jetbrains.lets-plot:lets-plot-kotlin:4.14.0")
72+
implementation("org.jetbrains.lets-plot:lets-plot-kotlin:4.15.0")
7373
7474
// Lets-Plot Compose UI
75-
implementation("org.jetbrains.lets-plot:lets-plot-compose:3.2.0")
75+
implementation("org.jetbrains.lets-plot:lets-plot-compose:3.2.2")
7676
}
7777
```
7878
@@ -86,10 +86,10 @@ See examples:
8686
```kotlin
8787
dependencies {
8888
// Lets-Plot Kotlin API
89-
implementation("org.jetbrains.lets-plot:lets-plot-kotlin:4.14.0")
89+
implementation("org.jetbrains.lets-plot:lets-plot-kotlin:4.15.0")
9090

9191
// Lets-Plot Compose UI
92-
implementation("org.jetbrains.lets-plot:lets-plot-compose:3.2.0")
92+
implementation("org.jetbrains.lets-plot:lets-plot-compose:3.2.2")
9393
}
9494
```
9595

build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ if (project.file("local.properties").exists()) {
4242

4343
allprojects {
4444
group = "org.jetbrains.lets-plot"
45-
version = "3.2.2-SNAPSHOT"
45+
version = "3.2.3-SNAPSHOT"
4646
// version = "0.0.0-SNAPSHOT" // for local publishing only
4747

4848
tasks.withType<org.jetbrains.kotlin.gradle.tasks.KotlinCompile>().all {

future_changes.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
## [3.2.1] - 20yy-mm-dd
1+
## [3.2.3] - 20yy-mm-dd
22

33
### Compatibility
44

55
All artifacts were built with the following versions of dependencies:
6-
- Compose Multiplatform: [1.11.0](https://github.com/JetBrains/compose-multiplatform/releases/tag/v1.11.0)
7-
- Lets-Plot Kotlin API: [4.14.0](https://github.com/JetBrains/lets-plot-kotlin/releases/tag/v4.14.0)
8-
- Lets-Plot Multiplatform: [4.10.1](https://github.com/JetBrains/lets-plot/releases/tag/v4.10.0)
6+
- Compose Multiplatform: [1.11.1](https://github.com/JetBrains/compose-multiplatform/releases/tag/v1.11.1)
7+
- Lets-Plot Kotlin API: [4.15.0](https://github.com/JetBrains/lets-plot-kotlin/releases/tag/v4.15.0)
8+
- Lets-Plot Multiplatform: [4.11.0](https://github.com/JetBrains/lets-plot/releases/tag/v4.11.0)
99

1010
### Added
1111

gradle.properties

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -49,10 +49,8 @@ slf4j.version=2.0.17
4949

5050
compose.version=1.11.1
5151

52-
letsPlot.version=4.11.0-rc1
53-
letsPlotKotlin.version=4.14.2-SNAPSHOT
54-
#letsPlot.version=0.0.0-SNAPSHOT
55-
#letsPlotKotlin.version=0.0.0-SNAPSHOT
52+
letsPlot.version=4.11.0
53+
letsPlotKotlin.version=4.15.0
5654

5755
# Optional dependencies. Not mandatory to update.
5856
nexusStaging.version=0.30.0

0 commit comments

Comments
 (0)