Skip to content

Commit

Permalink
Yet another bugfix in 'Loader'
Browse files Browse the repository at this point in the history
  • Loading branch information
superbobry committed Jun 27, 2016
1 parent bf38a76 commit 3234ec8
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 3 deletions.
6 changes: 6 additions & 0 deletions CHANGES
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,12 @@ viktor Changelog

Here you can see the full list of changes between each viktor release.

Version 0.3.2
-------------

Bugfix release, released on June 27th 2016


Version 0.3.1
-------------

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ repositories {
}

dependencies {
compile 'org.jetbrains.bio:viktor:0.3.1'
compile 'org.jetbrains.bio:viktor:0.3.2'
}

```
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version=0.3.1
version=0.3.2

org.gradle.configureondemand=true
org.gradle.parallel=true
2 changes: 1 addition & 1 deletion src/main/kotlin/org/jetbrains/bio/viktor/Loader.kt
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ internal object Loader {
useNative = true
}
}
} catch (e: UnsatisfiedLinkError) {
} catch (e: Throwable) {
System.err.println(listOf(
"Native SIMD optimization of vector operations is not available.",
"Fallback Kotlin implementation will be used instead.").joinToString("\n"))
Expand Down

0 comments on commit 3234ec8

Please sign in to comment.