From cb8809e7770f184cad97dd4f8167db671c03e742 Mon Sep 17 00:00:00 2001 From: Sergei Lebedev Date: Wed, 9 Dec 2015 12:12:46 +0300 Subject: [PATCH] Here comes 0.1.2 --- CHANGES | 2 ++ README.md | 2 +- build.gradle | 14 ++++++++++---- 3 files changed, 13 insertions(+), 5 deletions(-) diff --git a/CHANGES b/CHANGES index 94d7550..6870027 100644 --- a/CHANGES +++ b/CHANGES @@ -6,6 +6,8 @@ Here you can see the full list of changes between each viktor release. Version 0.1.2 ------------- +Released on December 9th, 2015 + - Overloaded '-' and '/' operations for 'StridedVector'. - Removed redundant boxing and copying in 'StridedVector#sorted'. - Fixed indexing in 'StridedMatrix3#equals'. diff --git a/README.md b/README.md index 705a780..3aa44c4 100644 --- a/README.md +++ b/README.md @@ -38,7 +38,7 @@ repositories { } dependencies { - compile 'org.jetbrains.bio:viktor:0.1.1' + compile 'org.jetbrains.bio:viktor:0.1.2' compile files("$rootDir/lib/yeppp-bundle-1.0.jar") compile files("$rootDir/lib/simd.jar", diff --git a/build.gradle b/build.gradle index 38775d4..21ef397 100644 --- a/build.gradle +++ b/build.gradle @@ -11,6 +11,7 @@ buildscript { dependencies { classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version" + classpath "org.jetbrains.dokka:dokka-gradle-plugin:0.9.3" } } @@ -18,6 +19,7 @@ plugins { id 'com.jfrog.bintray' version '1.2' } +apply plugin: 'org.jetbrains.dokka' apply plugin: 'kotlin' apply plugin: 'maven-publish' @@ -40,6 +42,14 @@ dependencies { testCompile 'junit:junit:4.+' } +dokka { + linkMapping { + dir = "src/main/kotlin" + url = "https://github.com/JetBrains-Research/viktor/blob/master/src/main/kotlin" + suffix = "#L" + } +} + task sourcesJar(type: Jar) { classifier = 'sources' from sourceSets.main.allSource @@ -79,7 +89,3 @@ bintray { task wrapper(type: Wrapper) { gradleVersion = '2.5' } - -sourceSets { - main.java.srcDirs += 'src/main/kotlin' -}