Skip to content

Commit 59480bb

Browse files
authored
Merge pull request #95 from adamint/dev
update dependencies, add state testing token validity
2 parents aab852e + 0a4ce74 commit 59480bb

File tree

17 files changed

+360
-173
lines changed

17 files changed

+360
-173
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ repositories {
2929
jcenter()
3030
}
3131
32-
compile group: 'com.adamratzman', name: 'spotify-api-kotlin', version: '2.3.0'
32+
compile group: 'com.adamratzman', name: 'spotify-api-kotlin', version: '2.3.02'
3333
```
3434

3535
To use the latest snapshot instead, you must add the Jitpack repository as well
@@ -51,7 +51,7 @@ dependencies {
5151
<dependency>
5252
<groupId>com.adamratzman</groupId>
5353
<artifactId>spotify-api-kotlin</artifactId>
54-
<version>2.3.0</version>
54+
<version>2.3.02</version>
5555
</dependency>
5656
5757
<repository>

build.gradle

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
buildscript {
2-
ext.kotlin_version = '1.3.31'
2+
ext.kotlin_version = '1.3.41'
33
ext.dokka_version = '0.9.17'
44

55
repositories { jcenter() }
@@ -12,22 +12,20 @@ buildscript {
1212

1313

1414
plugins {
15-
id "com.diffplug.gradle.spotless" version "3.23.0"
15+
id "com.diffplug.gradle.spotless" version "3.23.1"
1616
id "base"
17-
id "io.codearte.nexus-staging" version "0.20.0"
17+
id "io.codearte.nexus-staging" version "0.21.0"
1818
id "com.bmuschko.nexus" version "2.3.1"
1919
}
2020

2121
apply plugin: 'kotlin'
2222
apply plugin: 'org.jetbrains.dokka'
2323

2424
group 'com.adamratzman'
25-
version '2.3.0'
25+
version '2.3.03'
2626

2727
archivesBaseName = 'spotify-api-kotlin'
2828

29-
sourceCompatibility = 1.8
30-
3129
repositories {
3230
jcenter()
3331
}
@@ -39,7 +37,7 @@ dependencies {
3937
compile "com.squareup.moshi:moshi:1.8.0"
4038
compile "com.squareup.moshi:moshi-kotlin:1.8.0"
4139

42-
compile group: 'com.google.http-client', name: 'google-http-client', version: '1.23.0'
40+
compile group: 'com.google.http-client', name: 'google-http-client', version: '1.30.2'
4341

4442
compile "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
4543
compile "org.jetbrains.kotlin:kotlin-reflect:$kotlin_version"

0 commit comments

Comments
 (0)