Skip to content

Commit

Permalink
1.0.42
Browse files Browse the repository at this point in the history
  • Loading branch information
acharneski committed Nov 29, 2023
1 parent 03e92cd commit c36593c
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -76,18 +76,18 @@ Maven:
<dependency>
<groupId>com.simiacryptus</groupId>
<artifactId>skyenet-webui</artifactId>
<version>1.0.41</version>
<version>1.0.42</version>
</dependency>
```

Gradle:

```groovy
implementation group: 'com.simiacryptus', name: 'skyenet', version: '1.0.41'
implementation group: 'com.simiacryptus', name: 'skyenet', version: '1.0.42'
```

```kotlin
implementation("com.simiacryptus:skyenet:1.0.41")
implementation("com.simiacryptus:skyenet:1.0.42")
```

### 🌟 To Use
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,8 @@ abstract class ParsedResponse<T>(val clazz: Class<T>) {
abstract fun getText(): String
abstract fun getObj(clazz: Class<T>): T
fun getObj(): T = getObj(clazz)

override fun toString(): String {
return getText()
}
}
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Gradle Releases -> https://github.com/gradle/gradle/releases
libraryGroup = com.simiacryptus.skyenet
libraryVersion = 1.0.41
libraryVersion = 1.0.42
gradleVersion = 7.6.1

# Opt-out flag for bundling Kotlin standard library -> https://plugins.jetbrains.com/docs/intellij/kotlin.html#kotlin-standard-library
Expand Down

0 comments on commit c36593c

Please sign in to comment.