Skip to content

Commit

Permalink
Release: 3.0.1 - bug fix (UnrecognizedPropertyException)
Browse files Browse the repository at this point in the history
  • Loading branch information
JellyBrick committed Jun 3, 2021
1 parent ff74a70 commit 163967e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@ kotlin.code.style=official

# Library Setting
group=be.zvz.koreanbots
version=3.0.0
version=3.0.1
api.base.url=https://koreanbots.dev/api
github.repo=JellyBrick/Koreanbots-Kotlin-SDK
3 changes: 2 additions & 1 deletion src/main/kotlin/be/zvz/koreanbots/dto/ResponseWrapper.kt
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,6 @@ package be.zvz.koreanbots.dto
internal data class ResponseWrapper<T> (
val code: Int,
val version: Int,
val data: T?
val data: T?,
val message: String?
)

0 comments on commit 163967e

Please sign in to comment.