From 4a180fbd9964a84d517af85a6d187cab6adae331 Mon Sep 17 00:00:00 2001 From: Gabriel Feo Date: Sun, 7 Apr 2024 01:23:56 +0100 Subject: [PATCH] Bump version for next release --- README.md | 10 +++++----- docs/AccessKeys.md | 2 +- examples/example-notebooks/MostFrequentBuilds.ipynb | 6 +++--- examples/example-project/build.gradle.kts | 2 +- examples/example-scripts/example-script.main.kts | 2 +- gradle.properties | 2 +- 6 files changed, 12 insertions(+), 12 deletions(-) diff --git a/README.md b/README.md index 4e18d325..0eca6862 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ # Develocity API Kotlin -[![Maven Central](https://img.shields.io/badge/Maven%20Central-2024.1.0-blue)][14] -[![Javadoc](https://img.shields.io/badge/Javadoc-2024.1.0-orange)][7] +[![Maven Central](https://img.shields.io/badge/Maven%20Central-2024.1.1-blue)][14] +[![Javadoc](https://img.shields.io/badge/Javadoc-2024.1.1-orange)][7] (formerly `gradle-enterprise-api-kotlin`) @@ -36,7 +36,7 @@ Set up environment variables and use the library from any notebook, script or pr ``` %useLatestDescriptors -%use develocity-api-kotlin(version=2024.1.0) +%use develocity-api-kotlin(version=2024.1.1) ``` @@ -45,7 +45,7 @@ Set up environment variables and use the library from any notebook, script or pr Add to a Kotlin script ```kotlin -@file:DependsOn("com.gabrielfeo:develocity-api-kotlin:2024.1.0") +@file:DependsOn("com.gabrielfeo:develocity-api-kotlin:2024.1.1") ``` @@ -55,7 +55,7 @@ Set up environment variables and use the library from any notebook, script or pr ```kotlin dependencies { - implementation("com.gabrielfeo:develocity-api-kotlin:2024.1.0") + implementation("com.gabrielfeo:develocity-api-kotlin:2024.1.1") } ``` diff --git a/docs/AccessKeys.md b/docs/AccessKeys.md index b02562c7..0a0b69a6 100644 --- a/docs/AccessKeys.md +++ b/docs/AccessKeys.md @@ -14,7 +14,7 @@ as the `DEVELOCITY_API_TOKEN` environment variable. ## Migrating from macOS keychain support This library used to support storing the key in the macOS keychain as `gradle-enterprise-api-kotlin`. -This feature was deprecated in 2023.4.0, then removed in 2024.1.0. You may use the method of your choice +This feature was deprecated in 2023.4.0, then removed in 2024.1.1. You may use the method of your choice (secret managers, password manager CLIs, etc.) to store and retrieve the key to an environment. If you used the key from keychain and need a drop-in replacement: diff --git a/examples/example-notebooks/MostFrequentBuilds.ipynb b/examples/example-notebooks/MostFrequentBuilds.ipynb index 721e2139..6eba4dc4 100644 --- a/examples/example-notebooks/MostFrequentBuilds.ipynb +++ b/examples/example-notebooks/MostFrequentBuilds.ipynb @@ -35,7 +35,7 @@ "Add libraries to use, via line magics. `%use` is a [line magic](https://github.com/Kotlin/kotlin-jupyter#line-magics) of the Kotlin kernel that can do much more than adding the library. To illustrate, this setup can be replaced with a single line magic.\n", "\n", "```kotlin\n", - "@file:DependsOn(\"com.gabrielfeo:develocity-api-kotlin:2024.1.0\")\n", + "@file:DependsOn(\"com.gabrielfeo:develocity-api-kotlin:2024.1.1\")\n", "\n", "import com.gabrielfeo.develocity.api.*\n", "import com.gabrielfeo.develocity.api.model.*\n", @@ -45,7 +45,7 @@ "is the same as:\n", "\n", "```\n", - "%use develocity-api-kotlin(version=2024.1.0)\n", + "%use develocity-api-kotlin(version=2024.1.1)\n", "```" ] }, @@ -62,7 +62,7 @@ "outputs": [], "source": [ "%useLatestDescriptors\n", - "%use develocity-api-kotlin(version=2024.1.0)\n", + "%use develocity-api-kotlin(version=2024.1.1)\n", "%use coroutines(v=1.7.1)\n", "\n", "val api = DevelocityApi.newInstance()" diff --git a/examples/example-project/build.gradle.kts b/examples/example-project/build.gradle.kts index 7c7daa35..e2e3ae62 100644 --- a/examples/example-project/build.gradle.kts +++ b/examples/example-project/build.gradle.kts @@ -15,5 +15,5 @@ java { } dependencies { - implementation("com.gabrielfeo:develocity-api-kotlin:2024.1.0") + implementation("com.gabrielfeo:develocity-api-kotlin:2024.1.1") } diff --git a/examples/example-scripts/example-script.main.kts b/examples/example-scripts/example-script.main.kts index 341c9634..70a0d217 100644 --- a/examples/example-scripts/example-script.main.kts +++ b/examples/example-scripts/example-script.main.kts @@ -17,7 +17,7 @@ * Run this with at least 1GB of heap to accomodate the fetched data: JAVA_OPTS=-Xmx1g */ -@file:DependsOn("com.gabrielfeo:develocity-api-kotlin:2024.1.0") +@file:DependsOn("com.gabrielfeo:develocity-api-kotlin:2024.1.1") import com.gabrielfeo.develocity.api.* import com.gabrielfeo.develocity.api.model.* diff --git a/gradle.properties b/gradle.properties index 9d16b8c0..d120ff8a 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,6 +1,6 @@ group=com.gabrielfeo artifact=develocity-api-kotlin -version=2024.1.0 +version=2024.1.1 develocity.version=2024.1 repo.url=https://github.com/gabrielfeo/develocity-api-kotlin org.gradle.jvmargs=-Xmx5g