Skip to content

Commit

Permalink
Here comes 0.1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
superbobry committed Dec 9, 2015
1 parent cb5d3f7 commit cb8809e
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 5 deletions.
2 changes: 2 additions & 0 deletions CHANGES
Original file line number Diff line number Diff line change
Expand Up @@ -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'.
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
14 changes: 10 additions & 4 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,15 @@ buildscript {

dependencies {
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath "org.jetbrains.dokka:dokka-gradle-plugin:0.9.3"
}
}

plugins {
id 'com.jfrog.bintray' version '1.2'
}

apply plugin: 'org.jetbrains.dokka'
apply plugin: 'kotlin'
apply plugin: 'maven-publish'

Expand All @@ -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
Expand Down Expand Up @@ -79,7 +89,3 @@ bintray {
task wrapper(type: Wrapper) {
gradleVersion = '2.5'
}

sourceSets {
main.java.srcDirs += 'src/main/kotlin'
}

0 comments on commit cb8809e

Please sign in to comment.