Skip to content

Commit

Permalink
implement v0.10.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Foxcapades committed Jun 14, 2023
1 parent 3041531 commit ca447fb
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
8 changes: 4 additions & 4 deletions build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile

plugins {
kotlin("jvm") version "1.8.0"
id("org.jetbrains.dokka") version "1.7.20"
kotlin("jvm") version "1.8.22"
id("org.jetbrains.dokka") version "1.8.20"
`java-library`
`maven-publish`
}

group = "org.veupathdb.lib.s3"
version = "0.8.0+s34k-0.9.0"
version = "0.9.0+s34k-0.10.0"

repositories {
mavenLocal()
Expand Down Expand Up @@ -36,7 +36,7 @@ dependencies {
implementation(kotlin("stdlib"))
implementation("org.slf4j:slf4j-api:1.7.36")

api("org.veupathdb.lib.s3:s34k:0.9.0")
api("org.veupathdb.lib.s3:s34k:0.10.0")

testImplementation("org.junit.jupiter:junit-jupiter:5.8.2")
testImplementation(kotlin("test"))
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ abstract class AbstractS3Object(
override val path: String,
override val lastModified: OffsetDateTime?,
override val eTag: String,
override val size: Long,
override val region: String?,
override val headers: Headers,
override val bucket: S3Bucket,
Expand Down

0 comments on commit ca447fb

Please sign in to comment.