File tree Expand file tree Collapse file tree 3 files changed +10
-10
lines changed
src/main/kotlin/org/jetbrains/bio/viktor Expand file tree Collapse file tree 3 files changed +10
-10
lines changed Original file line number Diff line number Diff line change @@ -6,6 +6,8 @@ Here you can see the full list of changes between each viktor release.
66Version 0.4.0
77-------------
88
9+ Released on November 1st 2016
10+
911- Fixed serialization of non-dense matrices.
1012- Allowed slicing a `StridedVector` with custom `step`.
1113- Replaced `Strided` prefix with `F64`.
Original file line number Diff line number Diff line change @@ -4,8 +4,7 @@ viktor [
3532}
3633
3734dependencies {
38- compile ' org.jetbrains.bio:viktor:0.3.5 '
35+ compile ' org.jetbrains.bio: viktor: 0.4 . 0 '
3936}
40-
4137```
4238
4339[bintray]: https://bintray.com/jetbrains-research/maven/viktor/view
@@ -85,7 +81,7 @@ Publishing
8581You can do it with a one-liner
8682
8783```bash
88- ./gradlew clean assemble generatePomFileForMavenJavaPublication bintrayUpload
84+ ./gradlew clean assemble test generatePomFileForMavenJavaPublication bintrayUpload
8985```
9086
9187Make sure to set Bintray credentials (see API key section
Original file line number Diff line number Diff line change @@ -69,8 +69,10 @@ internal object Loader {
6969 }
7070 } catch (e: Throwable ) {
7171 System .err.println (listOf (
72- " Native SIMD optimization of vector operations is not available." ,
73- " Fallback Kotlin implementation will be used instead." ).joinToString(" \n " ))
72+ " Native SIMD optimization of array operations is not available." ,
73+ " Fallback Kotlin implementation will be used instead." ,
74+ " Build viktor for your system from source as described in " +
75+ " https://github.com/JetBrains-Research/viktor" ).joinToString(" \n " ))
7476 e.printStackTrace(System .err)
7577 }
7678 }
You can’t perform that action at this time.
0 commit comments