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 library version in examples to 2023.1.0 #118

Merged
merged 3 commits into from
Oct 10, 2023
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
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
@@ -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:

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

</details>
Expand All @@ -61,7 +61,7 @@ recommended over JitPack.
<summary>Add to a Kotlin script</summary>

```kotlin
@file:DependsOn("com.gabrielfeo:gradle-enterprise-api-kotlin:0.17.0")
@file:DependsOn("com.gabrielfeo:gradle-enterprise-api-kotlin:2023.1.0")
```

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

Expand Down Expand Up @@ -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
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: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",
Expand All @@ -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",
"```"
]
},
Expand All @@ -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)"
]
},
Expand Down
2 changes: 1 addition & 1 deletion examples/example-project/app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -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")
}
2 changes: 1 addition & 1 deletion examples/example-script.main.kts
Original file line number Diff line number Diff line change
Expand Up @@ -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.*
Expand Down
Loading