Skip to content

Commit c6b1f60

Browse files
committed
update dependencies
Signed-off-by: Adam Ratzman <[email protected]>
1 parent 90a42f0 commit c6b1f60

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,13 +15,13 @@ This library is available via Maven Central.
1515
<dependency>
1616
<groupId>com.adamratzman</groupId>
1717
<artifactId>spotify-api-kotlin</artifactId>
18-
<version>2.1.1</version>
18+
<version>2.1.2</version>
1919
</dependency>
2020
```
2121

2222
### Gradle
2323
```
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'
2525
```
2626

2727
To use the latest snapshot instead, you must add the Jitpack repository

build.gradle

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

55
repositories { jcenter() }
@@ -36,23 +36,23 @@ repositories {
3636

3737
dependencies {
3838
// Actual library dependencies
39-
implementation 'com.beust:klaxon:5.0.1'
39+
implementation 'com.beust:klaxon:5.0.5'
4040

4141
compile "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
4242
compile "org.jetbrains.kotlin:kotlin-reflect:$kotlin_version"
4343

4444
// 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') {
4646
exclude group: 'org.jetbrains.kotlin'
4747
}
48-
testRuntimeOnly('org.spekframework.spek2:spek-runner-junit5:2.0.0-rc.1') {
48+
testRuntimeOnly('org.spekframework.spek2:spek-runner-junit5:2.0.0') {
4949
exclude group: 'org.junit.platform'
5050
exclude group: 'org.jetbrains.kotlin'
5151
}
5252

53-
testImplementation('org.junit.jupiter:junit-jupiter-api:5.2.0')
53+
testImplementation('org.junit.jupiter:junit-jupiter-api:5.4.0')
5454
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'
5656

5757
}
5858

0 commit comments

Comments
 (0)