Skip to content

Commit 8bf8099

Browse files
Release v2.1.1
1 parent 0c53ff2 commit 8bf8099

File tree

4 files changed

+30
-23
lines changed

4 files changed

+30
-23
lines changed

CHANGELOG.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,23 @@ All notable changes to this project will be documented in this file.
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.
77

8+
## [2.1.1] - 2024-12-17
9+
10+
### Compatibility
11+
12+
- [Android](https://developer.android.com/compose) **temporarily not supported due to [SKIKO-761](https://youtrack.jetbrains.com/issue/SKIKO-761).**
13+
- [Compose Multiplatform](https://github.com/JetBrains/compose-multiplatform) 1.7.0 and 1.7.1
14+
- [Skiko](https://github.com/JetBrains/skiko) 0.8.15 and 0.8.18
15+
- [Lets-Plot Kotlin API](https://github.com/JetBrains/lets-plot-kotlin) 4.9.3
16+
- [Lets-Plot Multiplatform](https://github.com/JetBrains/lets-plot) 4.5.2
17+
18+
### Changed
19+
20+
- Kotlin version to 2.1.0
21+
- Lets-Plot Kotlin version to 4.9.3
22+
- Lets-Plot version to 4.5.2
23+
24+
825
## [2.1.0] - 2024-12-12
926

1027
### Compatibility

README.md

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818

1919
## Dependencies
2020

21-
See release notes for the latest version of the dependencies: [v2.1.0](https://github.com/JetBrains/lets-plot-skia/releases/tag/v2.1.0)
21+
See release notes for the latest version of the dependencies: [v2.1.1](https://github.com/JetBrains/lets-plot-skia/releases/tag/v2.1.1)
2222

2323
### Compose Desktop
2424

@@ -27,14 +27,14 @@ dependencies {
2727
...
2828

2929
// Lets-Plot Kotlin API
30-
implementation("org.jetbrains.lets-plot:lets-plot-kotlin-kernel:4.9.2")
30+
implementation("org.jetbrains.lets-plot:lets-plot-kotlin-kernel:4.9.3")
3131

3232
// Lets-Plot Multiplatform
33-
implementation("org.jetbrains.lets-plot:lets-plot-common:4.5.1")
34-
implementation("org.jetbrains.lets-plot:platf-awt:4.5.1")
33+
implementation("org.jetbrains.lets-plot:lets-plot-common:4.5.2")
34+
implementation("org.jetbrains.lets-plot:platf-awt:4.5.2")
3535

3636
// Lets-Plot Skia Frontend
37-
implementation("org.jetbrains.lets-plot:lets-plot-compose:2.1.0")
37+
implementation("org.jetbrains.lets-plot:lets-plot-compose:2.1.1")
3838
}
3939
```
4040
See example: [Compose desktop](https://github.com/JetBrains/lets-plot-compose-demos/blob/main/compose-desktop/build.gradle.kts) demo.
@@ -50,10 +50,10 @@ dependencies {
5050
implementation("org.jetbrains.skiko:skiko-android:0.8.4")
5151

5252
// Lets-Plot Kotlin API
53-
implementation("org.jetbrains.lets-plot:lets-plot-kotlin-kernel:4.9.2")
53+
implementation("org.jetbrains.lets-plot:lets-plot-kotlin-kernel:4.9.3")
5454

5555
// Lets-Plot Multiplatform
56-
implementation("org.jetbrains.lets-plot:lets-plot-common:4.5.1")
56+
implementation("org.jetbrains.lets-plot:lets-plot-common:4.5.2")
5757

5858
// Lets-Plot Skia Frontend
5959
implementation("org.jetbrains.lets-plot:lets-plot-compose:2.0.0")
@@ -73,14 +73,14 @@ dependencies {
7373
implementation("org.jetbrains.skiko:skiko-awt-runtime-macos-x64:0.8.4")
7474

7575
// Lets-Plot Kotlin API
76-
implementation("org.jetbrains.lets-plot:lets-plot-kotlin-kernel:4.9.2")
76+
implementation("org.jetbrains.lets-plot:lets-plot-kotlin-kernel:4.9.3")
7777

7878
// Lets-Plot Multiplatform
79-
implementation("org.jetbrains.lets-plot:lets-plot-common:4.5.1")
80-
implementation("org.jetbrains.lets-plot:platf-awt:4.5.1")
79+
implementation("org.jetbrains.lets-plot:lets-plot-common:4.5.2")
80+
implementation("org.jetbrains.lets-plot:platf-awt:4.5.2")
8181

8282
// Lets-Plot Skia Frontend
83-
implementation("org.jetbrains.lets-plot:lets-plot-swing-skia:2.1.0")
83+
implementation("org.jetbrains.lets-plot:lets-plot-swing-skia:2.1.1")
8484
}
8585
```
8686

build.gradle.kts

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

3131
allprojects {
3232
group = "org.jetbrains.lets-plot"
33-
version = "2.1.1-SNAPSHOT"
33+
version = "2.1.2-SNAPSHOT"
3434
// version = "0.0.0-SNAPSHOT" // for local publishing only
3535

3636
tasks.withType<org.jetbrains.kotlin.gradle.tasks.KotlinCompile>().all {

future_changes.md

Lines changed: 1 addition & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,9 @@
1-
## [2.1.1] - 2024-12-17
1+
## [2.1.2] - 2024-mm-dd
22

33
### Compatibility
44

5-
- [Android](https://developer.android.com/compose) **temporarily not supported due to [SKIKO-761](https://youtrack.jetbrains.com/issue/SKIKO-761).**
6-
- [Compose Multiplatform](https://github.com/JetBrains/compose-multiplatform) 1.7.0 and 1.7.1
7-
- [Skiko](https://github.com/JetBrains/skiko) 0.8.15 and 0.8.18
8-
- [Lets-Plot Kotlin API](https://github.com/JetBrains/lets-plot-kotlin) 4.9.3
9-
- [Lets-Plot Multiplatform](https://github.com/JetBrains/lets-plot) 4.5.2
10-
115
### Added
126

137
### Changed
148

15-
- Kotlin version to 2.1.0
16-
- Lets-Plot Kotlin version to 4.9.3
17-
- Lets-Plot version to 4.5.2
18-
199
### Fixed

0 commit comments

Comments
 (0)