Skip to content

Commit

Permalink
tidy up, bump version again
Browse files Browse the repository at this point in the history
  • Loading branch information
sanity committed Sep 26, 2017
1 parent 02e709c commit 2a25ded
Show file tree
Hide file tree
Showing 10 changed files with 14 additions and 10 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Pair Adjacent Violators

![status stable](https://img.shields.io/badge/status-stable-brightgreen.svg) [![Awesome Kotlin Badge](https://kotlin.link/awesome-kotlin.svg)](https://kotlin.link/) [![](https://jitpack.io/v/sanity/pairAdjacentViolators.svg)](https://jitpack.io/#sanity/pairAdjacentViolators) [![Build Status](https://travis-ci.org/sanity/pairAdjacentViolators.svg?branch=master)](https://img.shields.io/travis/sanity/pairAdjacentViolators) ![coverage 89%](https://img.shields.io/badge/coverage-89%25-brightgreen.svg)
![status stable](https://img.shields.io/badge/status-stable-brightgreen.svg) [![Awesome Kotlin Badge](https://kotlin.link/awesome-kotlin.svg)](https://kotlin.link/) [![](https://jitpack.io/v/sanity/pairAdjacentViolators.svg)](https://jitpack.io/#sanity/pairAdjacentViolators) [![Travis](https://img.shields.io/travis/sanity/pairAdjacentViolators.svg)](https://travis-ci.org/sanity/pairAdjacentViolators) ![coverage 89%](https://img.shields.io/badge/coverage-89%25-brightgreen.svg)

## Overview

Expand Down Expand Up @@ -99,9 +99,9 @@ public class PAVTest {
```

### Full API documentation
* [1.4.6](https://jitpack.io/com/github/sanity/pairAdjacentViolators/1.4.4/javadoc/com.github.sanity.pav/index.html)
* [1.4.7](https://jitpack.io/com/github/sanity/pairAdjacentViolators/1.4.7/javadoc/com.github.sanity.pav/index.html)
* [SNAPSHOT](https://jitpack.io/com/github/sanity/pairAdjacentViolators/-SNAPSHOT/javadoc/com.github.sanity.pav/index.html) (warning: This may take a while to load as it is rebuilt on-demand)

### License
Released under the [LGPL](https://en.wikipedia.org/wiki/GNU_Lesser_General_Public_License) version 3 by [Ian Clarke](http://blog.locut.us/) of [Stacks](http://trystacks.com/).
Released under the [LGPL](https://en.wikipedia.org/wiki/GNU_Lesser_General_Public_License) version 3 by [Ian Clarke](http://blog.locut.us/).

2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
group 'com.github.sanity'
version '1.4.5'
version '1.4.7'

buildscript {
ext.kotlin_version = '1.1.50'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ package com.github.sanity.pav

import com.github.sanity.pav.PairAdjacentViolators.PAVMode.DECREASING
import com.github.sanity.pav.spline.MonotoneSpline
import io.kotlintest.matchers.*
import io.kotlintest.specs.FreeSpec

/**
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
package com.github.sanity.pav

import com.github.sanity.pav.PairSubstitutingDoublyLinkedList.Companion.createFromList
import io.kotlintest.matchers.*
import io.kotlintest.specs.FreeSpec
import java.util.*

Expand Down
6 changes: 2 additions & 4 deletions src/test/kotlin/com/github/sanity/pav/SerializeSpec.kt
Original file line number Diff line number Diff line change
@@ -1,10 +1,8 @@
package com.github.sanity.pav

import io.kotlintest.matchers.*
import io.kotlintest.specs.FreeSpec
import java.io.ByteArrayInputStream
import java.io.ByteArrayOutputStream
import java.io.ObjectInputStream
import java.io.ObjectOutputStream
import java.io.*

/**
* Created by musachev on 20.12.2016.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
package com.github.sanity.pav.spline

import io.kotlintest.matchers.*
import io.kotlintest.specs.FreeSpec

/**
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
package com.github.sanity.pav.spline

import com.github.sanity.pav.Point
import io.kotlintest.matchers.*
import io.kotlintest.specs.FreeSpec

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ package com.github.sanity.pav.spline

import com.github.sanity.pav.Point
import com.github.sanity.pav.spline.MonotoneSpline.ExtrapolationStrategy.TANGENT
import io.kotlintest.matchers.*
import io.kotlintest.specs.FreeSpec

/**
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
package com.github.sanity.pav.spline

import com.github.sanity.pav.Point
import io.kotlintest.matchers.*
import io.kotlintest.specs.FreeSpec

/**
Expand Down
4 changes: 2 additions & 2 deletions src/test/kotlin/com/github/sanity/pav/utilitiesSpec.kt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package com.github.sanity.pav

import com.github.sanity.pav.BinarySearchResult.Between
import com.github.sanity.pav.BinarySearchResult.Exact
import com.github.sanity.pav.BinarySearchResult.*
import io.kotlintest.matchers.*
import io.kotlintest.specs.FreeSpec
import java.util.*

Expand Down

0 comments on commit 2a25ded

Please sign in to comment.