Skip to content

Commit b4c88c7

Browse files
committed
v0.4.4 release
1 parent 72c2070 commit b4c88c7

File tree

12 files changed

+98
-6
lines changed

12 files changed

+98
-6
lines changed

CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,24 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99
### Added
10+
11+
### Changed
12+
13+
### Deprecated
14+
15+
### Removed
16+
17+
### Fixed
18+
19+
### Security
20+
## [0.4.4]
21+
### Added
1022
- Candlestick support
1123
- Range builders for axis
1224

1325
### Changed
1426
- build tools 0.10.0
27+
- demo projects moved to examples
1528

1629
### Deprecated
1730
- Direct usage of `range` in axis

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
Dev builds and intermediate artifacts are available via `https://repo.kotlin.link` maven repository.
1313

1414
## Compatibility note
15-
The current `0.4.3` version of the library is compatible with kotlin 1.4 with JS-IR and kotlinx-serialization 1.1.0. The JVM part requires JVM 11 to run.
15+
The current `0.4.4` version of the library is compatible with kotlin 1.4 with JS-IR and kotlinx-serialization 1.1.0. The JVM part requires JVM 11 to run.
1616

1717
# TL;DR
1818
See [examples](./examples/src/main/kotlin).
@@ -55,8 +55,8 @@ The examples of the notebooks are shown in [notebooks](./examples/notebooks) dir
5555

5656
```kotlin
5757
@file:Repository("https://repo.kotlin.link")
58-
@file:DependsOn("space.kscience:plotlykt-jupyter:0.4.3")
59-
//@file:DependsOn("space.kscience:plotlykt-server:0.4.3") // Use this one for sever integration.
58+
@file:DependsOn("space.kscience:plotlykt-jupyter:0.4.4")
59+
//@file:DependsOn("space.kscience:plotlykt-server:0.4.4") // Use this one for sever integration.
6060
```
6161

6262
The module `plotly` allows rendering static plots in Jupyter. Jupyter lab is currently supported. Jupyter notebook (classic) is able to render only `PlotlyPage` objects, so one must convert plots to pages to be able to use notebook (see [demo notebook](./notebooks/plotlykt-demo-classic.ipynb)).
@@ -92,7 +92,7 @@ repositories {
9292
}
9393

9494
dependencies {
95-
implementation("space.kscience:plotlykt-server:0.4.3")
95+
implementation("space.kscience:plotlykt-server:0.4.4")
9696
}
9797
```
9898

File renamed without changes.

fx-demo/src/main/kotlin/space/kscience/plotly/fx/PlotlyFXApp.kt renamed to examples/fx-demo/src/main/kotlin/space/kscience/plotly/fx/PlotlyFXApp.kt

File renamed without changes.

fx-demo/src/main/kotlin/space/kscience/plotly/fx/PlotlyFXController.kt renamed to examples/fx-demo/src/main/kotlin/space/kscience/plotly/fx/PlotlyFXController.kt

File renamed without changes.

fx-demo/src/main/kotlin/space/kscience/plotly/fx/server.kt renamed to examples/fx-demo/src/main/kotlin/space/kscience/plotly/fx/server.kt

File renamed without changes.

js-demo/src/main/kotlin/space/kscience/plotly/jsdemo/main.kt renamed to examples/js-demo/src/main/kotlin/space/kscience/plotly/jsdemo/main.kt

File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)