Skip to content

Commit

Permalink
Release v2.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
IKupriyanov-HORIS committed Dec 17, 2024
1 parent 0c53ff2 commit 8bf8099
Show file tree
Hide file tree
Showing 4 changed files with 30 additions and 23 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.

## [2.1.1] - 2024-12-17

### Compatibility

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

### Changed

- Kotlin version to 2.1.0
- Lets-Plot Kotlin version to 4.9.3
- Lets-Plot version to 4.5.2


## [2.1.0] - 2024-12-12

### Compatibility
Expand Down
22 changes: 11 additions & 11 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@

## Dependencies

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)
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)

### Compose Desktop

Expand All @@ -27,14 +27,14 @@ dependencies {
...

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

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

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

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

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

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

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

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

// Lets-Plot Skia Frontend
implementation("org.jetbrains.lets-plot:lets-plot-swing-skia:2.1.0")
implementation("org.jetbrains.lets-plot:lets-plot-swing-skia:2.1.1")
}
```

Expand Down
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ if (project.file("local.properties").exists()) {

allprojects {
group = "org.jetbrains.lets-plot"
version = "2.1.1-SNAPSHOT"
version = "2.1.2-SNAPSHOT"
// version = "0.0.0-SNAPSHOT" // for local publishing only

tasks.withType<org.jetbrains.kotlin.gradle.tasks.KotlinCompile>().all {
Expand Down
12 changes: 1 addition & 11 deletions future_changes.md
Original file line number Diff line number Diff line change
@@ -1,19 +1,9 @@
## [2.1.1] - 2024-12-17
## [2.1.2] - 2024-mm-dd

### Compatibility

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

### Added

### Changed

- Kotlin version to 2.1.0
- Lets-Plot Kotlin version to 4.9.3
- Lets-Plot version to 4.5.2

### Fixed

0 comments on commit 8bf8099

Please sign in to comment.