Skip to content

Commit

Permalink
Upgrade LP -> 4.4.1, K -> 1.9.25
Browse files Browse the repository at this point in the history
  • Loading branch information
alshan committed Aug 23, 2024
1 parent f446153 commit d3f5e7b
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ In this case the latest `library descriptor` will be pulled from the [Kotlin Jup
#### Library Descriptor Parameters

```
%use lets-plot(api=4.8.0, lib=4.4.0, js=4.4.0, isolatedFrame=false)
%use lets-plot(api=4.8.0, lib=4.4.1, js=4.4.1, isolatedFrame=false)
```
- `api` - version of the Lets-Plot Kotlin API.
- `lib` - version of the Lets-Plot Multiplatform (JARs).
Expand Down
6 changes: 3 additions & 3 deletions USAGE_BATIK_JFX_JS.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ dependencies {
// Lets-Plot Kotlin API
implementation("org.jetbrains.lets-plot:lets-plot-kotlin-jvm:4.8.0")
// Lets-Plot Multiplatform (Batik rendering)
implementation("org.jetbrains.lets-plot:lets-plot-batik:4.4.0")
implementation("org.jetbrains.lets-plot:lets-plot-batik:4.4.1")
}
```

Expand All @@ -77,7 +77,7 @@ dependencies {
// Lets-Plot Kotlin API
implementation("org.jetbrains.lets-plot:lets-plot-kotlin-jvm:4.8.0")
// Lets-Plot Multiplatform (JFX Scene rendering)
implementation("org.jetbrains.lets-plot:lets-plot-jfx:4.4.0")
implementation("org.jetbrains.lets-plot:lets-plot-jfx:4.4.1")
}
```

Expand Down Expand Up @@ -193,7 +193,7 @@ val rawSpec = figure.toSpec()
```kotlin
val html: String = PlotHtmlExport.buildHtmlFromRawSpecs(
plotSpec = rawSpec,
scriptUrl = PlotHtmlHelper.scriptUrl(version="4.4.0"),
scriptUrl = PlotHtmlHelper.scriptUrl(version="4.4.1"),
iFrame = true
)
```
Expand Down
2 changes: 1 addition & 1 deletion demo/js-frontend-app/src/jsMain/resources/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
</head>
<body>
<script type="text/javascript"
src="https://cdn.jsdelivr.net/gh/JetBrains/[email protected].0/js-package/distr/lets-plot.min.js"></script>
src="https://cdn.jsdelivr.net/gh/JetBrains/[email protected].1/js-package/distr/lets-plot.min.js"></script>
<script src="js-frontend-app.js"></script>
<div>
<h2>Lets-Plot Kotlin/JS Demo.</h2>
Expand Down
4 changes: 2 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ kotlin.daemon.jvmargs=-Xmx2048M
kotlin.jvm.target.validation.mode=error

# Versions
kotlin.version=1.9.23
kotlin.version=1.9.25
datetime.version=0.3.2
kotlinLogging.version=2.0.5
slf4j.version=1.7.32
Expand All @@ -24,7 +24,7 @@ nexusStaging.version=0.30.0
nexusPublish.version=1.3.0

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

# The latest GeoTools 30-RC do not compile due to
# "renaming of all "org.opengis" packages into "org.geotools.api" ones"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
lets_plot.version=4.4.0
lets_plot_kotlin_api.version=4.8.0
lets_plot.version=4.4.1
lets_plot_kotlin_api.version=4.8.1-SNAPSHOT

0 comments on commit d3f5e7b

Please sign in to comment.