Skip to content

Commit

Permalink
Bump library version in examples to 2023.1.0 (#118)
Browse files Browse the repository at this point in the history
Co-authored-by: github-actions <[email protected]>
Co-authored-by: Gabriel Feo <[email protected]>
  • Loading branch information
3 people authored Oct 10, 2023
1 parent 4736c96 commit 0e50b1a
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 11 deletions.
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

0 comments on commit 0e50b1a

Please sign in to comment.