Skip to content

Commit d805990

Browse files
authored
Merge pull request #231 from adamint/dev
update DSL
2 parents 27a3ade + a442a49 commit d805990

31 files changed

+829
-1255
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -335,3 +335,5 @@ gradle-app.setting
335335

336336
# End of https://www.toptal.com/developers/gitignore/api/gradle,kotlin,android,intellij+all,node
337337
/docs/
338+
docs/
339+
docs/**

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ repositories {
3737
jcenter()
3838
}
3939
40-
implementation("com.adamratzman:spotify-api-kotlin-core:3.3.03")
40+
implementation("com.adamratzman:spotify-api-kotlin-core:3.4.0")
4141
```
4242

4343
Note that images and profiles are not supported on the Kotlin/JS target.

build.gradle.kts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ buildscript {
3232
}
3333

3434
group = "com.adamratzman"
35-
version = "3.3.03"
35+
version = "3.4.0"
3636

3737
tasks.withType<Test> {
3838
this.testLogging {
@@ -299,6 +299,7 @@ tasks {
299299
val publishAllPublicationsToNexusRepositoryWithTests by registering(Task::class) {
300300
dependsOn.add(check)
301301
dependsOn.add("publishAllPublicationsToNexusRepository")
302+
dependsOn.add(dokkaHtml)
302303
}
303304
}
304305

0 commit comments

Comments
 (0)