Skip to content

Commit

Permalink
Bump dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
j4ckofalltrades committed Sep 18, 2022
1 parent 3082e8c commit e16e83d
Show file tree
Hide file tree
Showing 8 changed files with 31 additions and 9 deletions.
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
[![Kotlin](https://img.shields.io/badge/kotlin-1.7.0-blueviolet)](https://kotlinlang.org)
[![Ktor](https://img.shields.io/badge/ktor-2.0.2-blue)](https://ktor.io)

[![KDoc](https://img.shields.io/badge/kdoc-1.2.0-green)](https://j4ckofalltrades.github.io/steam-webapi-kt)
[![KDoc](https://img.shields.io/badge/kdoc-1.2.1-green)](https://j4ckofalltrades.github.io/steam-webapi-kt)
[![javadoc](https://javadoc.io/badge2/io.github.j4ckofalltrades/steam-webapi-kt/javadoc.svg)](https://javadoc.io/doc/io.github.j4ckofalltrades/steam-webapi-kt)
[![codecov](https://codecov.io/gh/j4ckofalltrades/steam-webapi-kt/branch/main/graph/badge.svg?token=2IDBVWIE7T)](https://codecov.io/gh/j4ckofalltrades/steam-webapi-kt)

Expand All @@ -17,15 +17,15 @@ Steam WebAPI wrapper in Kotlin and Ktor.

```kotlin
dependencies {
implementation("com.github.j4ckofalltrades:steam-webapi-kt:1.2.0")
implementation("com.github.j4ckofalltrades:steam-webapi-kt:1.2.1")
}
```

### Gradle Groovy DSL

```groovy
dependencies {
implementation "com.github.j4ckofalltrades:steam-webapi-kt:1.2.0"
implementation "com.github.j4ckofalltrades:steam-webapi-kt:1.2.1"
}
```

Expand All @@ -35,7 +35,7 @@ dependencies {
<dependency>
<groupId>com.github.j4ckofalltrades</groupId>
<artifactId>steam-webapi-kt</artifactId>
<version>1.2.0</version>
<version>1.2.1</version>
</dependency>
```

Expand All @@ -51,7 +51,7 @@ repositories {
}

dependencies {
implementation("com.github.j4ckofalltrades:steam-webapi-kt:1.2.0")
implementation("com.github.j4ckofalltrades:steam-webapi-kt:1.2.1")
}
```

Expand All @@ -63,7 +63,7 @@ dependencies {

```kotlin
dependencies {
implementation("com.github.j4ckofalltrades:steam-webapi-kt:1.2.0")
implementation("com.github.j4ckofalltrades:steam-webapi-kt:1.2.1")
}
```

Expand Down
6 changes: 3 additions & 3 deletions lib/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -5,18 +5,18 @@ plugins {
kotlin("jvm") version "1.7.0"
kotlin("plugin.serialization") version "1.7.0"
id("org.jlleitschuh.gradle.ktlint") version "10.2.1"
id("org.jetbrains.dokka") version "1.6.21"
id("org.jetbrains.dokka") version "1.7.10"
`java-library`
`maven-publish`
signing
jacoco
}

group = "io.github.j4ckofalltrades"
version = "1.2.0"
version = "1.2.1"

var kotlinVersion = "1.7.0"
var ktorVersion = "2.0.2"
var ktorVersion = "2.1.1"

repositories {
mavenCentral()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,21 +33,27 @@ internal class IPlayerServiceWrapperTest {
GET_RECENTLY_PLAYED_GAMES -> {
respond(RECENTLY_PLAYED_GAMES_JSON, headers = responseHeaders)
}

GET_OWNED_GAMES -> {
respond(OWNED_GAMES_JSON, headers = responseHeaders)
}

GET_STEAM_LEVEL -> {
respond(PLAYER_LEVEL_JSON, headers = responseHeaders)
}

GET_BADGES -> {
respond(PLAYER_BADGES_JSON, headers = responseHeaders)
}

GET_COMMUNITY_BADGE_PROGRESS -> {
respond(PLAYER_BADGE_PROGRESS_JSON, headers = responseHeaders)
}

IS_PLAYING_SHARED_GAME -> {
respond(PLAYING_SHARED_GAME_JSON, headers = responseHeaders)
}

else -> error("Unhandled ${it.url.encodedPath}")
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,11 @@ internal class ISteamAppsWrapperTest {
GET_APP_LIST -> {
respond(APP_LIST_JSON, headers = responseHeaders)
}

UP_TO_DATE_CHECK -> {
respond(UP_TO_DATE_CHECK_JSON, headers = responseHeaders)
}

else -> error("Unhandled ${it.url.encodedPath}")
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ internal class ISteamNewsWrapperTest {
GET_NEWS_FOR_APP -> {
respond(NEWS_FOR_APP_JSON, headers = responseHeaders)
}

else -> error("Unhandled ${it.url.encodedPath}")
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,21 +34,27 @@ internal class ISteamUserStatsWrapperTest {
GET_GLOBAL_ACHIEVEMENT_PERCENTAGES_FOR_APP -> {
respond(GLOBAL_ACHIEVEMENTS_JSON, headers = responseHeaders)
}

GET_GLOBAL_STATS_FOR_GAME -> {
respond(GLOBAL_STATS_FOR_GAME_JSON, headers = responseHeaders)
}

GET_NUMBER_OF_CURRENT_PLAYERS -> {
respond(CURRENT_PLAYERS_JSON, headers = responseHeaders)
}

GET_PLAYER_ACHIEVEMENTS -> {
respond(PLAYER_ACHIEVEMENTS_JSON, headers = responseHeaders)
}

GET_SCHEMA_FOR_GAME -> {
respond(GAME_SCHEMA_JSON, headers = responseHeaders)
}

GET_USER_STATS_FOR_GAME -> {
respond(GAME_USER_STATS_JSON, headers = responseHeaders)
}

else -> error("Unhandled ${it.url.encodedPath}")
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,18 +33,23 @@ internal class ISteamUserWrapperTest {
GET_FRIEND_LIST -> {
respond(FRIEND_LIST_JSON, headers = responseHeaders)
}

GET_PLAYER_BANS -> {
respond(PLAYER_BANS_JSON, headers = responseHeaders)
}

GET_PLAYER_SUMMARIES -> {
respond(PLAYER_SUMMARIES_JSON, headers = responseHeaders)
}

GET_USER_GROUP_LIST -> {
respond(USER_GROUP_LIST_JSON, headers = responseHeaders)
}

RESOLVE_VANITY_URL -> {
respond(VANITY_URL_JSON, headers = responseHeaders)
}

else -> error("Unhandled ${it.url.encodedPath}")
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,11 @@ internal class ISteamWebApiUtilWrapperTest {
GET_SERVER_INFO -> {
respond(SERVER_INFO_JSON, headers = responseHeaders)
}

GET_SUPPORTED_API_LIST -> {
respond(SUPPORTED_API_JSON, headers = responseHeaders)
}

else -> error("Unhandled ${it.url.encodedPath}")
}
}
Expand Down

0 comments on commit e16e83d

Please sign in to comment.