File tree Expand file tree Collapse file tree 2 files changed +8
-8
lines changed Expand file tree Collapse file tree 2 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -15,13 +15,13 @@ This library is available via Maven Central.
15
15
<dependency>
16
16
<groupId>com.adamratzman</groupId>
17
17
<artifactId>spotify-api-kotlin</artifactId>
18
- <version>2.1.1 </version>
18
+ <version>2.1.2 </version>
19
19
</dependency>
20
20
```
21
21
22
22
### Gradle
23
23
```
24
- compile group: 'com.adamratzman', name: 'spotify-api-kotlin', version: '2.1.1 '
24
+ compile group: 'com.adamratzman', name: 'spotify-api-kotlin', version: '2.1.2 '
25
25
```
26
26
27
27
To use the latest snapshot instead, you must add the Jitpack repository
Original file line number Diff line number Diff line change 1
1
buildscript {
2
- ext. kotlin_version = ' 1.3.11 '
2
+ ext. kotlin_version = ' 1.3.21 '
3
3
ext. dokka_version = ' 0.9.17'
4
4
5
5
repositories { jcenter() }
@@ -36,23 +36,23 @@ repositories {
36
36
37
37
dependencies {
38
38
// Actual library dependencies
39
- implementation ' com.beust:klaxon:5.0.1 '
39
+ implementation ' com.beust:klaxon:5.0.5 '
40
40
41
41
compile " org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version "
42
42
compile " org.jetbrains.kotlin:kotlin-reflect:$kotlin_version "
43
43
44
44
// Spek testing requirements
45
- testImplementation(' org.spekframework.spek2:spek-dsl-jvm:2.0.0-rc.1 ' ) {
45
+ testImplementation(' org.spekframework.spek2:spek-dsl-jvm:2.0.0' ) {
46
46
exclude group : ' org.jetbrains.kotlin'
47
47
}
48
- testRuntimeOnly(' org.spekframework.spek2:spek-runner-junit5:2.0.0-rc.1 ' ) {
48
+ testRuntimeOnly(' org.spekframework.spek2:spek-runner-junit5:2.0.0' ) {
49
49
exclude group : ' org.junit.platform'
50
50
exclude group : ' org.jetbrains.kotlin'
51
51
}
52
52
53
- testImplementation(' org.junit.jupiter:junit-jupiter-api:5.2 .0' )
53
+ testImplementation(' org.junit.jupiter:junit-jupiter-api:5.4 .0' )
54
54
testImplementation(group : ' org.json' , name : ' json' , version : ' 20180130' )
55
- testRuntimeOnly ' org.junit.jupiter:junit-jupiter-engine:5.2 .0'
55
+ testRuntimeOnly ' org.junit.jupiter:junit-jupiter-engine:5.4 .0'
56
56
57
57
}
58
58
You can’t perform that action at this time.
0 commit comments