From 5f90f65fa30f2e7d2794c4d73532bf2febdfed32 Mon Sep 17 00:00:00 2001 From: Roman Chernyatchik Date: Wed, 12 Dec 2018 10:20:36 +0300 Subject: [PATCH] viktor 0.5.1 --- CHANGES | 8 ++++++++ build.gradle | 11 +++++++---- gradle.properties | 2 +- 3 files changed, 16 insertions(+), 5 deletions(-) diff --git a/CHANGES b/CHANGES index 2655c44..a244667 100644 --- a/CHANGES +++ b/CHANGES @@ -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 ------------- diff --git a/build.gradle b/build.gradle index 128610e..0ad9858 100644 --- a/build.gradle +++ b/build.gradle @@ -1,6 +1,6 @@ buildscript { ext { - kotlin_version = '1.0.+' + kotlin_version = '1.0.7' } repositories { @@ -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' @@ -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") } diff --git a/gradle.properties b/gradle.properties index 59a7845..51fb241 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1 +1 @@ -version=0.5.0 +version=0.5.1