Skip to content

Commit

Permalink
Merge pull request #155 from RADAR-base/master
Browse files Browse the repository at this point in the history
Update dev to release 1.1.2
  • Loading branch information
Bdegraaf1234 authored Mar 8, 2024
2 parents 1a12fe9 + b38ec53 commit 66ca2a0
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 17 deletions.
3 changes: 1 addition & 2 deletions CODEOWNERS
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
# These owners will be the default owners for everything in the repo.
# Unless a later match takes precedence, they will be requested for review when someone
# opens a pull request.
* @blootsvoets
testing/* @nivemaham @fnobilia
* @bdegraaf1234
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ repositories {
}
dependencies {
implementation("org.radarbase:radar-commons:1.1.1")
implementation("org.radarbase:radar-commons:1.1.2")
}
```

Expand Down Expand Up @@ -62,7 +62,7 @@ repositories {
}
dependencies {
implementation("org.radarbase:radar-commons-server:1.1.1")
implementation("org.radarbase:radar-commons-server:1.1.2")
}
```

Expand All @@ -75,7 +75,7 @@ repositories {
}
dependencies {
testImplementation("org.radarbase:radar-commons-testing:1.1.1")
testImplementation("org.radarbase:radar-commons-testing:1.1.2")
}
```

Expand All @@ -102,7 +102,7 @@ configurations.all {
}
dependencies {
implementation("org.radarbase:radar-commons:1.1.2-SNAPSHOT")
implementation("org.radarbase:radar-commons:1.1.3-SNAPSHOT")
}
```

Expand Down
6 changes: 3 additions & 3 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -48,9 +48,9 @@ subprojects {
githubUrl.set("https://github.com/$githubRepoName")
developers {
developer {
id.set("blootsvoets")
name.set("Joris Borgdorff")
email.set("joris@thehyve.nl")
id.set("bdegraaf1234")
name.set("Bastiaan de Graaf")
email.set("bastiaan@thehyve.nl")
organization.set("The Hyve")
}
developer {
Expand Down
4 changes: 2 additions & 2 deletions buildSrc/src/main/kotlin/Versions.kt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
@Suppress("ConstPropertyName", "MemberVisibilityCanBePrivate")
object Versions {
const val project = "1.1.2-SNAPSHOT"
const val project = "1.1.2"

object Plugins {
const val licenseReport = "2.5"
Expand Down Expand Up @@ -28,7 +28,7 @@ object Versions {
const val opencsv = "5.8"
const val ktor = "2.3.4"
const val coroutines = "1.7.3"
const val commonsCompress = "1.24.0"
const val commonsCompress = "1.26.0"
const val snappy = "1.1.10.5"
const val guava = "32.1.1-jre"
const val gradleVersionsPlugin = "0.50.0"
Expand Down
12 changes: 6 additions & 6 deletions radar-commons-gradle/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ plugins {
signing
}

version = "1.1.2-SNAPSHOT"
version = "1.1.2"
group = "org.radarbase"
description = "RADAR-base common Gradle plugin setup"

Expand Down Expand Up @@ -104,9 +104,9 @@ tasks.withType<GenerateMavenPom> {
}
developers {
developer {
id.set("blootsvoets")
name.set("Joris Borgdorff")
email.set("joris@thehyve.nl")
id.set("bdegraaf1234")
name.set("Bastiaan de Graaf")
email.set("bastiaan@thehyve.nl")
organization.set("The Hyve")
}
}
Expand Down Expand Up @@ -176,7 +176,7 @@ tasks.withType<PublishToMavenRepository> {
// They should be copied from the Versions.kt file directly to maintain consistency.
@Suppress("ConstPropertyName", "MemberVisibilityCanBePrivate")
object Versions {
const val project = "1.1.2-SNAPSHOT"
const val project = "1.1.2"

object Plugins {
const val licenseReport = "2.5"
Expand Down Expand Up @@ -204,7 +204,7 @@ object Versions {
const val opencsv = "5.8"
const val ktor = "2.3.4"
const val coroutines = "1.7.3"
const val commonsCompress = "1.24.0"
const val commonsCompress = "1.26.0"
const val snappy = "1.1.10.5"
const val guava = "32.1.1-jre"
const val gradleVersionsPlugin = "0.50.0"
Expand Down

0 comments on commit 66ca2a0

Please sign in to comment.