Skip to content

Commit

Permalink
Release v4.7.3
Browse files Browse the repository at this point in the history
  • Loading branch information
alshan committed May 30, 2024
1 parent c2e0599 commit 4bf820c
Show file tree
Hide file tree
Showing 7 changed files with 29 additions and 18 deletions.
17 changes: 17 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,23 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres
to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). All scales should have the 'format' parameter.

## [4.7.3] - 2024-05-30

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

### Added

- Support for `angle` aesthetic in `geomPoint()` [[#736](https://github.com/JetBrains/lets-plot/issues/736)].
See [example notebook](https://nbviewer.org/github/JetBrains/lets-plot-kotlin/blob/master/docs/examples/jupyter-notebooks/f-4.7.3/geom_point_angle.ipynb).

### Fixed

- Undesired vertical scroller when displaying `gggrid` in Jupyter notebook.
- Memory leak in SVG observable model (thanks to [contribution](https://github.com/JetBrains/lets-plot/commit/9c85d1ef39e3d6022880f068ce68e97b1b7ba2f1) by Ilya Muradyan).
- GeoJson structure breaks if the ring start label occurs several times [[#1086](https://github.com/JetBrains/lets-plot/issues/1086)].
- `theme`: left margin doesn't work for the `plot_title` parameter [[#1101](https://github.com/JetBrains/lets-plot/issues/1101)].
- Improve border line type experience [[LPK-220](https://github.com/JetBrains/lets-plot-kotlin/issues/220)].

## [4.7.2] - 2024-04-25

This release is 100% compatible with [Lets-Plot v 4.3.2](https://github.com/JetBrains/lets-plot/releases/tag/v4.3.2).
Expand Down
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.7.2, lib=4.3.2, js=4.3.2, isolatedFrame=false)
%use lets-plot(api=4.7.3, lib=4.3.3, js=4.3.3, isolatedFrame=false)
```
- `api` - version of the Lets-Plot Kotlin API.
- `lib` - version of the Lets-Plot Multiplatform (JARs).
Expand Down
12 changes: 6 additions & 6 deletions USAGE_BATIK_JFX_JS.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,9 +52,9 @@ plugins {

dependencies {
// Lets-Plot Kotlin API
implementation("org.jetbrains.lets-plot:lets-plot-kotlin-jvm:4.7.2")
implementation("org.jetbrains.lets-plot:lets-plot-kotlin-jvm:4.7.3")
// Lets-Plot Multiplatform (Batik rendering)
implementation("org.jetbrains.lets-plot:lets-plot-batik:4.3.2")
implementation("org.jetbrains.lets-plot:lets-plot-batik:4.3.3")
}
```

Expand All @@ -75,9 +75,9 @@ plugins {

dependencies {
// Lets-Plot Kotlin API
implementation("org.jetbrains.lets-plot:lets-plot-kotlin-jvm:4.7.2")
implementation("org.jetbrains.lets-plot:lets-plot-kotlin-jvm:4.7.3")
// Lets-Plot Multiplatform (JFX Scene rendering)
implementation("org.jetbrains.lets-plot:lets-plot-jfx:4.3.2")
implementation("org.jetbrains.lets-plot:lets-plot-jfx:4.3.3")
}
```

Expand All @@ -95,7 +95,7 @@ kotlin {
named("jsMain") {
dependencies {
// Lets-Plot Kotlin API
implementation("org.jetbrains.lets-plot:lets-plot-kotlin-js:4.7.2")
implementation("org.jetbrains.lets-plot:lets-plot-kotlin-js:4.7.3")
}
}
}
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.3.2"),
scriptUrl = PlotHtmlHelper.scriptUrl(version="4.3.3"),
iFrame = true
)
```
Expand Down
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ allprojects {
group = "org.jetbrains.lets-plot"
version = when (name) {
"dokka" -> "4.7.2"
else -> "4.7.3-SNAPSHOT"
else -> "4.7.4-SNAPSHOT"
// else -> "0.0.0-SNAPSHOT" // for local publishing only
}

Expand Down
4 changes: 2 additions & 2 deletions docs/geotools.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ the artifact `lets-plot-kotlin-geotools` must be included to make the `toSpatial

You can include it into a Gradle project.
```groovy
implementation 'org.jetbrains.lets-plot-kotlin:lets-plot-kotlin-geotools:4.7.2'
implementation 'org.jetbrains.lets-plot-kotlin:lets-plot-kotlin-geotools:4.7.3'
```

[ ![Download](https://api.bintray.com/packages/jetbrains/lets-plot-maven/lets-plot-kotlin-jars/images/download.svg)](https://bintray.com/jetbrains/lets-plot-maven/lets-plot-kotlin-jars/_latestVersion)
Expand All @@ -69,7 +69,7 @@ The `gt-geojson` artifact from GeoTools must be also included.
```groovy
dependencies {
...
implementation "org.jetbrains.lets-plot-kotlin:lets-plot-kotlin-geotools:4.7.2"
implementation "org.jetbrains.lets-plot-kotlin:lets-plot-kotlin-geotools:4.7.3"
implementation "org.geotools:gt-geojson:[30,)"
...
}
Expand Down
8 changes: 1 addition & 7 deletions future_changes.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,7 @@
## [4.7.3] - 2024-mm-dd
## [4.7.4] - 2024-mm-dd

### Added
- Support for `angle` aesthetic in `geomPoint()` [[#736](https://github.com/JetBrains/lets-plot/issues/736)].
See [example notebook](https://nbviewer.org/github/JetBrains/lets-plot-kotlin/blob/master/docs/examples/jupyter-notebooks/f-4.7.3/geom_point_angle.ipynb).

### Changed

### Fixed
- Undesired vertical scroller when displaying `gggrid` in Jupyter notebook.
- GeoJson structure breaks if the ring start label occurs several times [[#1086](https://github.com/JetBrains/lets-plot/issues/1086)].
- `theme`: left margin doesn't work for the `plot_title` parameter [[#1101](https://github.com/JetBrains/lets-plot/issues/1101)].
- Improve border line type experience [[LPK-220](https://github.com/JetBrains/lets-plot-kotlin/issues/220)].
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
lets_plot.version=4.3.3
lets_plot_kotlin_api.version=4.7.3-SNAPSHOT
lets_plot_kotlin_api.version=4.7.3

0 comments on commit 4bf820c

Please sign in to comment.