Skip to content

Commit f0a470b

Browse files
authored
Bump version for next release (#205)
1 parent fc05dd6 commit f0a470b

File tree

6 files changed

+12
-12
lines changed

6 files changed

+12
-12
lines changed

README.md

+5-5
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.1.0-blue)][14]
4-
[![Javadoc](https://img.shields.io/badge/Javadoc-2024.1.0-orange)][7]
3+
[![Maven Central](https://img.shields.io/badge/Maven%20Central-2024.1.1-blue)][14]
4+
[![Javadoc](https://img.shields.io/badge/Javadoc-2024.1.1-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.1.0)
39+
%use develocity-api-kotlin(version=2024.1.1)
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.1.0")
48+
@file:DependsOn("com.gabrielfeo:develocity-api-kotlin:2024.1.1")
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.1.0")
58+
implementation("com.gabrielfeo:develocity-api-kotlin:2024.1.1")
5959
}
6060
```
6161

docs/AccessKeys.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ as the `DEVELOCITY_API_TOKEN` environment variable.
1414
## Migrating from macOS keychain support
1515

1616
This library used to support storing the key in the macOS keychain as `gradle-enterprise-api-kotlin`.
17-
This feature was deprecated in 2023.4.0, then removed in 2024.1.0. You may use the method of your choice
17+
This feature was deprecated in 2023.4.0, then removed in 2024.1.1. You may use the method of your choice
1818
(secret managers, password manager CLIs, etc.) to store and retrieve the key to an environment.
1919

2020
If you used the key from keychain and need a drop-in replacement:

examples/example-notebooks/MostFrequentBuilds.ipynb

+3-3
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.1.0\")\n",
38+
"@file:DependsOn(\"com.gabrielfeo:develocity-api-kotlin:2024.1.1\")\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.1.0)\n",
48+
"%use develocity-api-kotlin(version=2024.1.1)\n",
4949
"```"
5050
]
5151
},
@@ -62,7 +62,7 @@
6262
"outputs": [],
6363
"source": [
6464
"%useLatestDescriptors\n",
65-
"%use develocity-api-kotlin(version=2024.1.0)\n",
65+
"%use develocity-api-kotlin(version=2024.1.1)\n",
6666
"%use coroutines(v=1.7.1)\n",
6767
"\n",
6868
"val api = DevelocityApi.newInstance()"

examples/example-project/build.gradle.kts

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,5 +15,5 @@ java {
1515
}
1616

1717
dependencies {
18-
implementation("com.gabrielfeo:develocity-api-kotlin:2024.1.0")
18+
implementation("com.gabrielfeo:develocity-api-kotlin:2024.1.1")
1919
}

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

+1-1
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.1.0")
20+
@file:DependsOn("com.gabrielfeo:develocity-api-kotlin:2024.1.1")
2121

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

gradle.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
group=com.gabrielfeo
22
artifact=develocity-api-kotlin
3-
version=2024.1.0
3+
version=2024.1.1
44
develocity.version=2024.1
55
repo.url=https://github.com/gabrielfeo/develocity-api-kotlin
66
org.gradle.jvmargs=-Xmx5g

0 commit comments

Comments
 (0)