Skip to content

Commit

Permalink
1.0.16
Browse files Browse the repository at this point in the history
  • Loading branch information
acharneski committed Sep 25, 2023
1 parent c1c6e7d commit dccc5d7
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -75,19 +75,19 @@ Maven:

<dependency>
<groupId>com.simiacryptus</groupId>
<artifactId>skyenet</artifactId>
<version>1.0.0</version>
<artifactId>skyenet-webui</artifactId>
<version>1.0.16</version>
</dependency>
```

Gradle:

```groovy
implementation group: 'com.simiacryptus', name: 'skyenet', version: '1.0.0'
implementation group: 'com.simiacryptus', name: 'skyenet', version: '1.0.16'
```

```kotlin
implementation("com.simiacryptus:skyenet:1.0.0")
implementation("com.simiacryptus:skyenet:1.0.16")
```

### 🌟 To Use
Expand Down
2 changes: 1 addition & 1 deletion core/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ val kotlin_version = "1.7.22"
val junit_version = "5.9.2"
dependencies {

implementation(group = "com.simiacryptus", name = "joe-penai", version = "1.0.17")
implementation(group = "com.simiacryptus", name = "joe-penai", version = "1.0.18")

implementation(group = "org.slf4j", name = "slf4j-api", version = "2.0.5")

Expand Down
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.15
libraryVersion = 1.0.16
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
2 changes: 1 addition & 1 deletion util/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ val jetty_version = "11.0.15"
dependencies {


implementation(group = "com.simiacryptus", name = "joe-penai", version = "1.0.17")
implementation(group = "com.simiacryptus", name = "joe-penai", version = "1.0.18")

implementation(project(":core"))
implementation(project(":webui"))
Expand Down
2 changes: 1 addition & 1 deletion webui/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ val jetty_version = "11.0.15"
val jackson_version = "2.15.0"
dependencies {

implementation(group = "com.simiacryptus", name = "joe-penai", version = "1.0.17")
implementation(group = "com.simiacryptus", name = "joe-penai", version = "1.0.18")

implementation(project(":core"))
testImplementation(project(":groovy"))
Expand Down

0 comments on commit dccc5d7

Please sign in to comment.