Version 0.6.4

This commit is contained in:
Mikołaj Pich 2019-01-20 15:25:51 +01:00
parent cbaa6f6923
commit 3e2f55b7cf
No known key found for this signature in database
GPG key ID: F62B26E36D4C4BAA
3 changed files with 6 additions and 6 deletions

View file

@ -21,7 +21,7 @@
- timetable
- messages
... and more. Check it out [full public api](https://github.com/wulkanowy/api/blob/0.6.0/src/main/kotlin/io/github/wulkanowy/api/Api.kt).
... and more. Check it out [full public api](https://github.com/wulkanowy/api/blob/0.6.4/src/main/kotlin/io/github/wulkanowy/api/Api.kt).
## Download
@ -35,7 +35,7 @@ allprojects {
}
dependencies {
implementation 'io.github.wulkanowy:api:0.6.3'
implementation 'io.github.wulkanowy:api:0.6.4'
}
```

View file

@ -1,13 +1,13 @@
plugins {
id 'java'
id 'org.jetbrains.kotlin.jvm' version '1.3.10'
id 'org.jetbrains.kotlin.jvm' version '1.3.11'
id 'jacoco'
id 'com.jfrog.bintray' version '1.8.4'
id 'com.github.dcendents.android-maven' version '2.1'
}
ext {
PUBLISH_VERSION = '0.6.3'
PUBLISH_VERSION = '0.6.4'
SITE_URL = 'https://github.com/wulkanowy/api'
GIT_URL = 'https://github.com/wulkanowy/api.git'
}
@ -15,7 +15,7 @@ ext {
group 'io.github.wulkanowy'
version PUBLISH_VERSION
sourceCompatibility = 1.8
sourceCompatibility = 1.7
repositories {
mavenCentral()

View file

@ -493,6 +493,6 @@ class ApiRemoteTest : BaseTest() {
luckyNumber.subscribe(luckyNumberObserver)
luckyNumberObserver.assertComplete()
assertEquals(0, luckyNumberObserver.values()[0])
assertNotEquals(0, luckyNumberObserver.values()[0])
}
}