Skip to content

Commit d3f5e7b

Browse files
committed
Upgrade LP -> 4.4.1, K -> 1.9.25
1 parent f446153 commit d3f5e7b

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ In this case the latest `library descriptor` will be pulled from the [Kotlin Jup
103103
#### Library Descriptor Parameters
104104

105105
```
106-
%use lets-plot(api=4.8.0, lib=4.4.0, js=4.4.0, isolatedFrame=false)
106+
%use lets-plot(api=4.8.0, lib=4.4.1, js=4.4.1, isolatedFrame=false)
107107
```
108108
- `api` - version of the Lets-Plot Kotlin API.
109109
- `lib` - version of the Lets-Plot Multiplatform (JARs).

USAGE_BATIK_JFX_JS.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ dependencies {
5454
// Lets-Plot Kotlin API
5555
implementation("org.jetbrains.lets-plot:lets-plot-kotlin-jvm:4.8.0")
5656
// Lets-Plot Multiplatform (Batik rendering)
57-
implementation("org.jetbrains.lets-plot:lets-plot-batik:4.4.0")
57+
implementation("org.jetbrains.lets-plot:lets-plot-batik:4.4.1")
5858
}
5959
```
6060

@@ -77,7 +77,7 @@ dependencies {
7777
// Lets-Plot Kotlin API
7878
implementation("org.jetbrains.lets-plot:lets-plot-kotlin-jvm:4.8.0")
7979
// Lets-Plot Multiplatform (JFX Scene rendering)
80-
implementation("org.jetbrains.lets-plot:lets-plot-jfx:4.4.0")
80+
implementation("org.jetbrains.lets-plot:lets-plot-jfx:4.4.1")
8181
}
8282
```
8383

@@ -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.4.0"),
196+
scriptUrl = PlotHtmlHelper.scriptUrl(version="4.4.1"),
197197
iFrame = true
198198
)
199199
```

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.4.0/js-package/distr/lets-plot.min.js"></script>
13+
src="https://cdn.jsdelivr.net/gh/JetBrains/lets-plot@v4.4.1/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>

gradle.properties

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ kotlin.daemon.jvmargs=-Xmx2048M
1313
kotlin.jvm.target.validation.mode=error
1414

1515
# Versions
16-
kotlin.version=1.9.23
16+
kotlin.version=1.9.25
1717
datetime.version=0.3.2
1818
kotlinLogging.version=2.0.5
1919
slf4j.version=1.7.32
@@ -24,7 +24,7 @@ nexusStaging.version=0.30.0
2424
nexusPublish.version=1.3.0
2525

2626
# Also update JS version in <home>/demo/js-frontend-app/src/main/resources/index.html
27-
letsPlot.version=4.4.0
27+
letsPlot.version=4.4.1
2828

2929
# The latest GeoTools 30-RC do not compile due to
3030
# "renaming of all "org.opengis" packages into "org.geotools.api" ones"
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
lets_plot.version=4.4.0
2-
lets_plot_kotlin_api.version=4.8.0
1+
lets_plot.version=4.4.1
2+
lets_plot_kotlin_api.version=4.8.1-SNAPSHOT

0 commit comments

Comments
 (0)