Skip to content

Commit d35bdb8

Browse files
committed
Release hotfix 4.4.1
1 parent e78e6a1 commit d35bdb8

File tree

4 files changed

+14
-6
lines changed

4 files changed

+14
-6
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,14 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). All scales should have the 'format' parameter.
77

88

9+
## [4.4.1] - 2023-05-11
10+
11+
### Fixed
12+
13+
- Lets-Plot dependency: was 3.2.0-RC1, now 3.2.0.
14+
- ggsave: an error if file does already exist [[#187](https://github.com/JetBrains/lets-plot-kotlin/issues/187)].
15+
16+
917
## [4.4.0] - 2023-05-10
1018

1119
### Added

LPK_APP.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ repositories {
7979
```groovy
8080
dependencies {
8181
implementation "org.jetbrains.lets-plot:lets-plot-batik:3.2.0"
82-
implementation "org.jetbrains.lets-plot:lets-plot-kotlin-jvm:4.4.0"
82+
implementation "org.jetbrains.lets-plot:lets-plot-kotlin-jvm:4.4.1"
8383
}
8484
```
8585

@@ -88,7 +88,7 @@ dependencies {
8888
```groovy
8989
dependencies {
9090
implementation "org.jetbrains.lets-plot:lets-plot-jfx:3.2.0"
91-
implementation "org.jetbrains.lets-plot:lets-plot-kotlin-jvm:4.4.0"
91+
implementation "org.jetbrains.lets-plot:lets-plot-kotlin-jvm:4.4.1"
9292
}
9393
```
9494

@@ -101,15 +101,15 @@ If your JVM app doesn't use either frontend, you can provide just "lets-plot-com
101101
```groovy
102102
dependencies {
103103
implementation "org.jetbrains.lets-plot:lets-plot-common:3.2.0"
104-
implementation "org.jetbrains.lets-plot:lets-plot-kotlin-jvm:4.4.0"
104+
implementation "org.jetbrains.lets-plot:lets-plot-kotlin-jvm:4.4.1"
105105
}
106106
```
107107

108108
#### Kotlin/JS application:
109109

110110
```groovy
111111
dependencies {
112-
implementation "org.jetbrains.lets-plot:lets-plot-kotlin-js:4.4.0"
112+
implementation "org.jetbrains.lets-plot:lets-plot-kotlin-js:4.4.1"
113113
}
114114
```
115115

build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ allprojects {
2626
group = "org.jetbrains.lets-plot"
2727
version = when (name) {
2828
"dokka" -> "4.4.0"
29-
else -> "4.4.1-alpha1"
29+
else -> "4.4.2-alpha1"
3030
}
3131

3232
val version = version as String
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
lets_plot.version=3.2.0
2-
lets_plot_kotlin_api.version=4.4.1-alpha1
2+
lets_plot_kotlin_api.version=4.4.1

0 commit comments

Comments
 (0)