Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump version for next release #205

Merged
merged 1 commit into from
Apr 7, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -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`)

Expand Down Expand Up @@ -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)
```

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

```kotlin
@file:DependsOn("com.gabrielfeo:develocity-api-kotlin:2024.1.0")
@file:DependsOn("com.gabrielfeo:develocity-api-kotlin:2024.1.1")
```

</details>
Expand All @@ -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")
}
```

Expand Down
2 changes: 1 addition & 1 deletion docs/AccessKeys.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
6 changes: 3 additions & 3 deletions examples/example-notebooks/MostFrequentBuilds.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand All @@ -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",
"```"
]
},
Expand All @@ -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()"
Expand Down
2 changes: 1 addition & 1 deletion examples/example-project/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,5 @@ java {
}

dependencies {
implementation("com.gabrielfeo:develocity-api-kotlin:2024.1.0")
implementation("com.gabrielfeo:develocity-api-kotlin:2024.1.1")
}
2 changes: 1 addition & 1 deletion examples/example-scripts/example-script.main.kts
Original file line number Diff line number Diff line change
Expand Up @@ -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.*
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -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
Expand Down
Loading