Skip to content

Commit

Permalink
Release v1.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
alshan committed Nov 30, 2023
1 parent 20e8a6a commit 373d01f
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 17 deletions.
17 changes: 12 additions & 5 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,11 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). All scales should have the 'format' parameter.


## [1.0.0] - 2023-10-05
## [1.0.2] - 2023-11-30

### Added
### Fixed

- Support for Android, Compose Desktop and Java Swing platforms.
- Examples in a separate GitHub repository: [lets-plot-compose-demos](https://github.com/JetBrains/lets-plot-compose-demos).
- Panel flickering when updating data [[#6](https://github.com/JetBrains/lets-plot-skia/issues/6)].


## [1.0.1] - 2023-11-09
Expand All @@ -20,4 +19,12 @@ to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). All scales should

- Crashes in Android when rebuild a PlotPanel ("keep aspect ratio" or plot spec change).
- Unexpected redraw [[#2](https://github.com/JetBrains/lets-plot-skia/issues/2)].
- DisposableEffect is not called.
- DisposableEffect is not called.


## [1.0.0] - 2023-10-05

### Added

- Support for Android, Compose Desktop and Java Swing platforms.
- Examples in a separate GitHub repository: [lets-plot-compose-demos](https://github.com/JetBrains/lets-plot-compose-demos).
15 changes: 7 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,7 @@
## Dependencies

- [Compose Multiplatform](https://github.com/JetBrains/compose-multiplatform) (v.1.5.1 and up)
- [Skiko](https://github.com/JetBrains/skiko) (v.0.7.86) \
`* v.0.7.87 - we faced certain issues`
- [Skiko](https://github.com/JetBrains/skiko) (v.0.7.89 and up)
- [Lets-Plot Kotlin API](https://github.com/JetBrains/lets-plot-kotlin) (v.4.5.0)
- [Lets-Plot Multiplatform](https://github.com/JetBrains/lets-plot) (v.4.1.0)

Expand All @@ -40,7 +39,7 @@ dependencies {
implementation("org.jetbrains.lets-plot:platf-awt:4.1.0")

// Lets-Plot Skia Frontend
implementation("org.jetbrains.lets-plot:lets-plot-compose:1.0.0")
implementation("org.jetbrains.lets-plot:lets-plot-compose:1.0.2")
}
```

Expand All @@ -50,7 +49,7 @@ dependencies {
dependencies {
...

implementation("org.jetbrains.skiko:skiko-android:0.7.80")
implementation("org.jetbrains.skiko:skiko-android:0.7.89")

// Lets-Plot Kotlin API
implementation("org.jetbrains.lets-plot:lets-plot-kotlin-kernel:4.5.0")
Expand All @@ -59,7 +58,7 @@ dependencies {
implementation("org.jetbrains.lets-plot:lets-plot-common:4.1.0")

// Lets-Plot Skia Frontend
implementation("org.jetbrains.lets-plot:lets-plot-compose:1.0.0")
implementation("org.jetbrains.lets-plot:lets-plot-compose:1.0.2")
}
```

Expand All @@ -69,9 +68,9 @@ dependencies {
dependencies {
...

implementation("org.jetbrains.skiko:skiko:0.7.80")
implementation("org.jetbrains.skiko:skiko:0.7.89")
// The host OS and architecture should be specified explicitly.
implementation("org.jetbrains.skiko:skiko-awt-runtime-macos-x64:0.7.80")
implementation("org.jetbrains.skiko:skiko-awt-runtime-macos-x64:0.7.89")

// Lets-Plot Kotlin API
implementation("org.jetbrains.lets-plot:lets-plot-kotlin-kernel:4.5.0")
Expand All @@ -81,7 +80,7 @@ dependencies {
implementation("org.jetbrains.lets-plot:platf-awt:4.1.0")

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

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

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

tasks.withType<org.jetbrains.kotlin.gradle.tasks.KotlinCompile>().all {
Expand Down
4 changes: 1 addition & 3 deletions future_changes.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,7 @@
## [1.0.2] - 202x-mm-dd
## [1.0.3] - 202x-mm-dd

### Added

### Changed

### Fixed

- Panel flickering when updating data [[#6](https://github.com/JetBrains/lets-plot-skia/issues/6)].

0 comments on commit 373d01f

Please sign in to comment.