Skip to content

Commit

Permalink
viktor 0.5.1
Browse files Browse the repository at this point in the history
  • Loading branch information
iromeo committed Dec 12, 2018
1 parent e82debc commit 5f90f65
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 5 deletions.
8 changes: 8 additions & 0 deletions CHANGES
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@ viktor Changelog

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

-------------
Version 0.5.1
-------------

Released on December 12, 2018

- Library dependencies containing '+' symbol replaced with exact versions. This gives more predictable runtime behaviour.

Version 0.5.0
-------------

Expand Down
11 changes: 7 additions & 4 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
buildscript {
ext {
kotlin_version = '1.0.+'
kotlin_version = '1.0.7'
}

repositories {
Expand All @@ -16,6 +16,9 @@ buildscript {
plugins {
id 'com.jfrog.bintray' version '1.8.4'
id 'me.champeau.gradle.jmh' version '0.3.1'

// Plugin which shows tasks dependencies, useful for debug:
// id "com.dorongold.task-tree" version "1.3"
}

apply plugin: 'cpp'
Expand Down Expand Up @@ -164,12 +167,12 @@ repositories {

dependencies {
compile 'org.apache.commons:commons-math3:3.6'
compile "org.jetbrains.bio:npy:0.3.+"
compile "org.jetbrains.bio:npy:0.3.3"
compile "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
compile 'log4j:log4j:1.2.+'
compile 'log4j:log4j:1.2.17'

testCompile "org.jetbrains.kotlin:kotlin-test:$kotlin_version"
testCompile 'junit:junit:4.+'
testCompile 'junit:junit:4.12'

jmh files("$rootDir/libs/yeppp-bundle-1.0.jar")
}
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
version=0.5.0
version=0.5.1

0 comments on commit 5f90f65

Please sign in to comment.