Skip to content

Commit 182d89a

Browse files
authored
Bump examples and badges to 2024.3.0 (#372)
Released from a release branch: [2024.3.0][1] [1]: https://github.com/gabrielfeo/develocity-api-kotlin/releases/tag/2024.3.0
1 parent f14c957 commit 182d89a

File tree

4 files changed

+11
-11
lines changed

4 files changed

+11
-11
lines changed

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Develocity API Kotlin
22

3-
[![Maven Central](https://img.shields.io/badge/Maven%20Central-2024.2.0-blue)][14]
4-
[![Javadoc](https://img.shields.io/badge/Javadoc-2024.2.0-orange)][7]
3+
[![Maven Central](https://img.shields.io/badge/Maven%20Central-2024.3.0-blue)][14]
4+
[![Javadoc](https://img.shields.io/badge/Javadoc-2024.3.0-orange)][7]
55

66
(formerly `gradle-enterprise-api-kotlin`)
77

@@ -36,7 +36,7 @@ Set up environment variables and use the library from any notebook, script or pr
3636

3737
```
3838
%useLatestDescriptors
39-
%use develocity-api-kotlin(version=2024.2.0)
39+
%use develocity-api-kotlin(version=2024.3.0)
4040
```
4141

4242
</details>
@@ -45,7 +45,7 @@ Set up environment variables and use the library from any notebook, script or pr
4545
<summary>Add to a Kotlin script</summary>
4646

4747
```kotlin
48-
@file:DependsOn("com.gabrielfeo:develocity-api-kotlin:2024.2.0")
48+
@file:DependsOn("com.gabrielfeo:develocity-api-kotlin:2024.3.0")
4949
```
5050

5151
</details>
@@ -55,7 +55,7 @@ Set up environment variables and use the library from any notebook, script or pr
5555

5656
```kotlin
5757
dependencies {
58-
implementation("com.gabrielfeo:develocity-api-kotlin:2024.2.0")
58+
implementation("com.gabrielfeo:develocity-api-kotlin:2024.3.0")
5959
}
6060
```
6161

@@ -200,7 +200,7 @@ import com.gabrielfeo.develocity.api.model.extension.*
200200
[11]: https://gabrielfeo.github.io/develocity-api-kotlin/library/com.gabrielfeo.develocity.api/-develocity-api/shutdown.html
201201
[12]: https://gabrielfeo.github.io/develocity-api-kotlin/library/com.gabrielfeo.develocity.api/-config/-cache-config/cache-enabled.html
202202
[13]: https://gabrielfeo.github.io/develocity-api-kotlin/library/com.gabrielfeo.develocity.api/-config/-cache-config/index.html
203-
[14]: https://central.sonatype.com/artifact/com.gabrielfeo/develocity-api-kotlin/2024.2.0
203+
[14]: https://central.sonatype.com/artifact/com.gabrielfeo/develocity-api-kotlin/2024.3.0
204204
[16]: https://gabrielfeo.github.io/develocity-api-kotlin/library/com.gabrielfeo.develocity.api/-config/api-url.html
205205
[17]: https://gabrielfeo.github.io/develocity-api-kotlin/library/com.gabrielfeo.develocity.api/-config/api-token.html
206206
[18]: https://gabrielfeo.github.io/develocity-api-kotlin/library/com.gabrielfeo.develocity.api/-builds-api/index.html

examples/example-notebooks/MostFrequentBuilds.ipynb

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
"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",
3636
"\n",
3737
"```kotlin\n",
38-
"@file:DependsOn(\"com.gabrielfeo:develocity-api-kotlin:2024.2.0\")\n",
38+
"@file:DependsOn(\"com.gabrielfeo:develocity-api-kotlin:2024.3.0\")\n",
3939
"\n",
4040
"import com.gabrielfeo.develocity.api.*\n",
4141
"import com.gabrielfeo.develocity.api.model.*\n",
@@ -45,7 +45,7 @@
4545
"is the same as:\n",
4646
"\n",
4747
"```\n",
48-
"%use develocity-api-kotlin(version=2024.2.0)\n",
48+
"%use develocity-api-kotlin(version=2024.3.0)\n",
4949
"```"
5050
]
5151
},
@@ -62,7 +62,7 @@
6262
"outputs": [],
6363
"source": [
6464
"%useLatestDescriptors\n",
65-
"%use develocity-api-kotlin(version=2024.2.0)\n",
65+
"%use develocity-api-kotlin(version=2024.3.0)\n",
6666
"%use coroutines(v=1.7.1)\n",
6767
"\n",
6868
"val api = DevelocityApi.newInstance()"

examples/example-project/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,5 @@ application {
88
}
99

1010
dependencies {
11-
implementation("com.gabrielfeo:develocity-api-kotlin:2024.2.0")
11+
implementation("com.gabrielfeo:develocity-api-kotlin:2024.3.0")
1212
}

examples/example-scripts/example-script.main.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
* Run this with at least 1GB of heap to accomodate the fetched data: JAVA_OPTS=-Xmx1g
1818
*/
1919

20-
@file:DependsOn("com.gabrielfeo:develocity-api-kotlin:2024.2.0")
20+
@file:DependsOn("com.gabrielfeo:develocity-api-kotlin:2024.3.0")
2121

2222
import com.gabrielfeo.develocity.api.*
2323
import com.gabrielfeo.develocity.api.model.*

0 commit comments

Comments
 (0)