Skip to content

Commit 359b538

Browse files
committed
Release v4.14.1
1 parent 78b7a37 commit 359b538

7 files changed

Lines changed: 29 additions & 15 deletions

File tree

CHANGELOG.md

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,21 @@ All notable changes to this project will be documented in this file.
44

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.
7-
7+
8+
9+
## [4.14.1] - 2026-06-10
10+
11+
This release is 100% compatible with Lets-Plot [v 4.10.3](https://github.com/JetBrains/lets-plot/releases/tag/v4.10.3),
12+
GeoTools [v 33.2](https://github.com/geotools/geotools/releases/tag/33.2)
13+
14+
### Changed
15+
16+
- Updated dependencies:
17+
- kotlinx.datetime 0.7.1
18+
- kotlinx.serialization 1.9.0
19+
- weisj.jsvg 2.1.0
20+
- jupyterApi 0.15.3-893-1
21+
822

923
## [4.14.0] - 2026-05-26
1024

USAGE_JVM_JS.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ dependencies {
5252
// Lets-Plot Kotlin API
5353
implementation("org.jetbrains.lets-plot:lets-plot-kotlin-jvm:4.14.0")
5454
// Lets-Plot (JVM)
55-
implementation("org.jetbrains.lets-plot:lets-plot-swing:4.10.1")
55+
implementation("org.jetbrains.lets-plot:lets-plot-swing:4.10.3")
5656
}
5757
```
5858

@@ -150,7 +150,7 @@ val rawSpec = figure.toSpec()
150150
```kotlin
151151
val html: String = PlotHtmlExport.buildHtmlFromRawSpecs(
152152
plotSpec = rawSpec,
153-
scriptUrl = PlotHtmlHelper.scriptUrl(version="4.10.1"),
153+
scriptUrl = PlotHtmlHelper.scriptUrl(version="4.10.3"),
154154
iFrame = true
155155
)
156156
```

build.gradle.kts

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

3939
allprojects {
4040
group = "org.jetbrains.lets-plot"
41-
version = "4.14.1-SNAPSHOT"
41+
version = "4.14.1"
4242
// version = "0.0.0-SNAPSHOT" // for local publishing only
4343

4444
tasks.withType<KotlinCompile>().all {

demo/js-frontend-app/src/jsMain/resources/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
</head>
1111
<body>
1212
<script type="text/javascript"
13-
src="https://cdn.jsdelivr.net/gh/JetBrains/lets-plot@v4.10.0/js-package/distr/lets-plot.min.js"></script>
13+
src="https://cdn.jsdelivr.net/gh/JetBrains/lets-plot@v4.10.3/js-package/distr/lets-plot.min.js"></script>
1414
<script src="js-frontend-app.js"></script>
1515
<div>
1616
<h2>Lets-Plot Kotlin/JS Demo.</h2>

future_changes.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
## [4.14.1] - 20yy-mm-dd
1+
## [4.14.2] - 20yy-mm-dd
22

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

66
### Added

gradle.properties

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -19,13 +19,13 @@ kotlin.jupyter.add.scanner=false
1919
# Keep in sync with lets-plot: https://github.com/JetBrains/lets-plot/blob/master/gradle.properties
2020
kotlin.version=2.3.10
2121
kotlinx.coroutines.version=1.8.0
22-
kotlinx.datetime.version=0.6.2
22+
kotlinx.datetime.version=0.7.1
23+
# IDEA bundles 1.9.0 (see Kotlin multiplatform / multi-format serialization)
24+
kotlinx.serialization.version=1.9.0
25+
2326
kotlinx.browser.version=0.5.0
2427
kotlinLogging.version=7.0.14
2528

26-
# Upgrade as soon as the project is compatible with K2.
27-
kotlinx.serialization.version=1.7.3
28-
2929
slf4j.version=2.0.13
3030
assertj.version=3.26.3
3131

@@ -40,10 +40,10 @@ nexusPublish.version=1.3.0
4040

4141
# See https://plugins.gradle.org/plugin/org.jetbrains.kotlin.jupyter.api
4242
# Versions compatibility table: https://github.com/Kotlin/kotlin-jupyter/blob/master/docs/compatibility.md
43-
jupyterApi.version=0.15.3-832-1
43+
jupyterApi.version=0.15.3-893-1
4444

4545
# Also update the JS version in <home>/demo/js-frontend-app/src/jsMain/resources/index.html
46-
letsPlot.version=4.10.1
46+
letsPlot.version=4.10.3
4747

4848
# https://geotoolsnews.blogspot.com/
4949
geotools.version=33.2
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
lets_plot.version=4.10.1
2-
lets_plot_kotlin_api.version=4.14.0
1+
lets_plot.version=4.10.3
2+
lets_plot_kotlin_api.version=4.14.1

0 commit comments

Comments
 (0)