File tree Expand file tree Collapse file tree 5 files changed +25
-13
lines changed
plot-api/src/jvmMain/resources/letsPlotKotlinAPI Expand file tree Collapse file tree 5 files changed +25
-13
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,20 @@ All notable changes to this project will be documented in this file.
55The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.0.0/ ) , and this project adheres
66to [ 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
1024This release is 100% compatible with Lets-Plot [ v 4.8.1] ( https://github.com/JetBrains/lets-plot/releases/tag/v4.8.0 ) ,
Original file line number Diff line number Diff line change @@ -52,9 +52,9 @@ plugins {
5252
5353dependencies {
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
7676dependencies {
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 ```
Original file line number Diff line number Diff line change @@ -36,7 +36,7 @@ if (project.file("local.properties").exists()) {
3636
3737allprojects {
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 {
Original file line number Diff line number Diff line change 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 ) ,
44GeoTools [ 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 )] .
Original file line number Diff line number Diff line change 11lets_plot.version =4.8.2
2- lets_plot_kotlin_api.version =4.12.1-SNAPSHOT
2+ lets_plot_kotlin_api.version =4.12.1
You can’t perform that action at this time.
0 commit comments