diff --git a/CODEOWNERS b/CODEOWNERS index 57ad8f5..c354ea6 100644 --- a/CODEOWNERS +++ b/CODEOWNERS @@ -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 \ No newline at end of file +* @bdegraaf1234 diff --git a/README.md b/README.md index cdcc67a..3af31c3 100644 --- a/README.md +++ b/README.md @@ -12,7 +12,7 @@ repositories { } dependencies { - implementation("org.radarbase:radar-commons:1.1.1") + implementation("org.radarbase:radar-commons:1.1.2") } ``` @@ -62,7 +62,7 @@ repositories { } dependencies { - implementation("org.radarbase:radar-commons-server:1.1.1") + implementation("org.radarbase:radar-commons-server:1.1.2") } ``` @@ -75,7 +75,7 @@ repositories { } dependencies { - testImplementation("org.radarbase:radar-commons-testing:1.1.1") + testImplementation("org.radarbase:radar-commons-testing:1.1.2") } ``` @@ -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") } ``` diff --git a/build.gradle.kts b/build.gradle.kts index eee21af..6b61096 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -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 { diff --git a/buildSrc/src/main/kotlin/Versions.kt b/buildSrc/src/main/kotlin/Versions.kt index 016e5e5..c3ee5dd 100644 --- a/buildSrc/src/main/kotlin/Versions.kt +++ b/buildSrc/src/main/kotlin/Versions.kt @@ -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" @@ -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" diff --git a/radar-commons-gradle/build.gradle.kts b/radar-commons-gradle/build.gradle.kts index 13a5be6..9585a34 100644 --- a/radar-commons-gradle/build.gradle.kts +++ b/radar-commons-gradle/build.gradle.kts @@ -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" @@ -104,9 +104,9 @@ tasks.withType { } 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") } } @@ -176,7 +176,7 @@ tasks.withType { // 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" @@ -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"