From 0e50b1aac2a6f3ced5589acadc77f139ea9658d7 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 10 Oct 2023 15:24:53 +0100 Subject: [PATCH] Bump library version in examples to 2023.1.0 (#118) Co-authored-by: github-actions Co-authored-by: Gabriel Feo --- README.md | 12 ++++++------ examples/example-notebooks/MostFrequentBuilds.ipynb | 6 +++--- examples/example-project/app/build.gradle.kts | 2 +- examples/example-script.main.kts | 2 +- 4 files changed, 11 insertions(+), 11 deletions(-) diff --git a/README.md b/README.md index f8c08fe3..bb7189b0 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ # Gradle Enterprise API Kotlin -[![Maven Central](https://img.shields.io/badge/Maven%20Central-0.17.0-blue)][14] -[![Javadoc](https://img.shields.io/badge/Javadoc-0.17.0-orange)][7] +[![Maven Central](https://img.shields.io/badge/Maven%20Central-2023.1.0-blue)][14] +[![Javadoc](https://img.shields.io/badge/Javadoc-2023.1.0-orange)][7] A Kotlin library to access the [Gradle Enterprise API][1], easy to use from: @@ -52,7 +52,7 @@ recommended over JitPack. ``` %useLatestDescriptors -%use gradle-enterprise-api-kotlin(version=0.17.0) +%use gradle-enterprise-api-kotlin(version=2023.1.0) ``` @@ -61,7 +61,7 @@ recommended over JitPack. Add to a Kotlin script ```kotlin -@file:DependsOn("com.gabrielfeo:gradle-enterprise-api-kotlin:0.17.0") +@file:DependsOn("com.gabrielfeo:gradle-enterprise-api-kotlin:2023.1.0") ``` @@ -71,7 +71,7 @@ recommended over JitPack. ```kotlin dependencies { - implementation("com.gabrielfeo:gradle-enterprise-api-kotlin:0.17.0") + implementation("com.gabrielfeo:gradle-enterprise-api-kotlin:2023.1.0") } ``` @@ -190,7 +190,7 @@ import com.gabrielfeo.gradle.enterprise.api.model.extension.* [11]: https://gabrielfeo.github.io/gradle-enterprise-api-kotlin/library/com.gabrielfeo.gradle.enterprise.api/-gradle-enterprise-api/shutdown.html [12]: https://gabrielfeo.github.io/gradle-enterprise-api-kotlin/library/com.gabrielfeo.gradle.enterprise.api/-config/-cache-config/cache-enabled.html [13]: https://gabrielfeo.github.io/gradle-enterprise-api-kotlin/library/com.gabrielfeo.gradle.enterprise.api/-config/-cache-config/index.html -[14]: https://central.sonatype.com/artifact/com.gabrielfeo/gradle-enterprise-api-kotlin/0.17.0 +[14]: https://central.sonatype.com/artifact/com.gabrielfeo/gradle-enterprise-api-kotlin/2023.1.0 [16]: https://gabrielfeo.github.io/gradle-enterprise-api-kotlin/library/com.gabrielfeo.gradle.enterprise.api/-config/api-url.html [17]: https://gabrielfeo.github.io/gradle-enterprise-api-kotlin/library/com.gabrielfeo.gradle.enterprise.api/-config/api-token.html [18]: https://gabrielfeo.github.io/gradle-enterprise-api-kotlin/library/com.gabrielfeo.gradle.enterprise.api/-builds-api/index.html diff --git a/examples/example-notebooks/MostFrequentBuilds.ipynb b/examples/example-notebooks/MostFrequentBuilds.ipynb index 9ddadc78..6fcf02fe 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:gradle-enterprise-api-kotlin:0.17.0\")\n", + "@file:DependsOn(\"com.gabrielfeo:gradle-enterprise-api-kotlin:2023.1.0\")\n", "\n", "import com.gabrielfeo.gradle.enterprise.api.*\n", "import com.gabrielfeo.gradle.enterprise.api.model.*\n", @@ -45,7 +45,7 @@ "is the same as:\n", "\n", "```\n", - "%use gradle-enterprise-api-kotlin(version=0.17.0)\n", + "%use gradle-enterprise-api-kotlin(version=2023.1.0)\n", "```" ] }, @@ -57,7 +57,7 @@ "outputs": [], "source": [ "%useLatestDescriptors\n", - "%use gradle-enterprise-api-kotlin(version=0.17.0)\n", + "%use gradle-enterprise-api-kotlin(version=2023.1.0)\n", "%use coroutines(v=1.7.1)" ] }, diff --git a/examples/example-project/app/build.gradle.kts b/examples/example-project/app/build.gradle.kts index bc23c0fd..cc9b065f 100644 --- a/examples/example-project/app/build.gradle.kts +++ b/examples/example-project/app/build.gradle.kts @@ -14,5 +14,5 @@ java { } dependencies { - implementation("com.gabrielfeo:gradle-enterprise-api-kotlin:0.17.0") + implementation("com.gabrielfeo:gradle-enterprise-api-kotlin:2023.1.0") } diff --git a/examples/example-script.main.kts b/examples/example-script.main.kts index be884810..b54e89e5 100644 --- a/examples/example-script.main.kts +++ b/examples/example-script.main.kts @@ -15,7 +15,7 @@ * legacy tests. We should suggest they run test instead, leaving check for CI to run." */ -@file:DependsOn("com.gabrielfeo:gradle-enterprise-api-kotlin:0.17.0") +@file:DependsOn("com.gabrielfeo:gradle-enterprise-api-kotlin:2023.1.0") import com.gabrielfeo.gradle.enterprise.api.* import com.gabrielfeo.gradle.enterprise.api.model.*