Skip to content

Commit b982848

Browse files
committed
Release v4.12.1
1 parent 9416b4f commit b982848

File tree

5 files changed

+25
-13
lines changed

5 files changed

+25
-13
lines changed

CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,20 @@ 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+
## [4.12.1] - 2025-12-22
9+
10+
This release is 100% compatible with Lets-Plot [v 4.8.2](https://github.com/JetBrains/lets-plot/releases/tag/v4.8.2),
11+
GeoTools [v 33.2](https://github.com/geotools/geotools/releases/tag/33.2)
12+
13+
### Added
14+
15+
- Support for `kotlin.time.Duration` and `java.time.Duration` [[LPK-294](https://github.com/JetBrains/lets-plot-kotlin/issues/294)].
16+
17+
### Fixed
18+
19+
- Horizontal `geom_boxplot()` with alpha specified is displayed incorrectly [[LPK-295](https://github.com/JetBrains/lets-plot-kotlin/issues/295)].
20+
21+
822
## [4.12.0] - 2025-12-02
923

1024
This release is 100% compatible with Lets-Plot [v 4.8.1](https://github.com/JetBrains/lets-plot/releases/tag/v4.8.0),

USAGE_BATIK_JFX_JS.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -52,9 +52,9 @@ plugins {
5252

5353
dependencies {
5454
// Lets-Plot Kotlin API
55-
implementation("org.jetbrains.lets-plot:lets-plot-kotlin-jvm:4.12.0")
55+
implementation("org.jetbrains.lets-plot:lets-plot-kotlin-jvm:4.12.1")
5656
// Lets-Plot Multiplatform (Batik rendering)
57-
implementation("org.jetbrains.lets-plot:lets-plot-batik:4.8.1")
57+
implementation("org.jetbrains.lets-plot:lets-plot-batik:4.8.2")
5858
}
5959
```
6060

@@ -75,9 +75,9 @@ plugins {
7575

7676
dependencies {
7777
// Lets-Plot Kotlin API
78-
implementation("org.jetbrains.lets-plot:lets-plot-kotlin-jvm:4.12.0")
78+
implementation("org.jetbrains.lets-plot:lets-plot-kotlin-jvm:4.12.1")
7979
// Lets-Plot Multiplatform (JFX Scene rendering)
80-
implementation("org.jetbrains.lets-plot:lets-plot-jfx:4.8.1")
80+
implementation("org.jetbrains.lets-plot:lets-plot-jfx:4.8.2")
8181
}
8282
```
8383

@@ -95,7 +95,7 @@ kotlin {
9595
named("jsMain") {
9696
dependencies {
9797
// Lets-Plot Kotlin API
98-
implementation("org.jetbrains.lets-plot:lets-plot-kotlin-js:4.12.0")
98+
implementation("org.jetbrains.lets-plot:lets-plot-kotlin-js:4.12.1")
9999
}
100100
}
101101
}
@@ -193,7 +193,7 @@ val rawSpec = figure.toSpec()
193193
```kotlin
194194
val html: String = PlotHtmlExport.buildHtmlFromRawSpecs(
195195
plotSpec = rawSpec,
196-
scriptUrl = PlotHtmlHelper.scriptUrl(version="4.8.1"),
196+
scriptUrl = PlotHtmlHelper.scriptUrl(version="4.8.2"),
197197
iFrame = true
198198
)
199199
```

build.gradle.kts

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

3737
allprojects {
3838
group = "org.jetbrains.lets-plot"
39-
version = "4.12.1-SNAPSHOT"
39+
version = "4.12.2-SNAPSHOT"
4040
// version = "0.0.0-SNAPSHOT" // for local publishing only
4141

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

future_changes.md

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,13 @@
1-
## [4.12.1] - 2025-mm-dd
1+
## [4.12.2] - 2026-mm-dd
22

3-
This release is 100% compatible with Lets-Plot [v 4.8.1](https://github.com/JetBrains/lets-plot/releases/tag/v4.8.0),
3+
This release is 100% compatible with Lets-Plot [v 4.8.2](https://github.com/JetBrains/lets-plot/releases/tag/v4.8.2),
44
GeoTools [v 33.2](https://github.com/geotools/geotools/releases/tag/33.2)
55

66
### Added
7-
8-
- Support for `kotlin.time.Duration` and `java.time.Duration` [[LPK-294](https://github.com/JetBrains/lets-plot-kotlin/issues/294)].
97

8+
109
### Changed
1110

1211

1312
### Fixed
1413

15-
- Horizontal geom_boxplot() with alpha specified is displayed incorrectly [[LPK-295](https://github.com/JetBrains/lets-plot-kotlin/issues/295)].
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
lets_plot.version=4.8.2
2-
lets_plot_kotlin_api.version=4.12.1-SNAPSHOT
2+
lets_plot_kotlin_api.version=4.12.1

0 commit comments

Comments
 (0)