Skip to content

Commit

Permalink
[Housekeeping] Enable Kotlin Toolchain for Java 17 (#403)
Browse files Browse the repository at this point in the history
* add toolchain for all projects

* update readme version

* update documentation

* update changelog

---------

Co-authored-by: Kyle Roe <[hopeman15@users.noreply.github.com]>
  • Loading branch information
hopeman15 and Kyle Roe authored Dec 5, 2024
1 parent 9361186 commit 020b93b
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 6 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ Model Forge is a library to automate model generation for automated testing:

```kotlin
dependencies {
testImplementation("io.github.hellocuriosity:model-forge:1.5.0")
testImplementation("io.github.hellocuriosity:model-forge:1.5.1")
}
```

Expand All @@ -36,7 +36,7 @@ dependencies {

```groovy
dependencies {
testImplementation 'io.github.hellocuriosity:model-forge:1.5.0'
testImplementation 'io.github.hellocuriosity:model-forge:1.5.1'
}
```

Expand All @@ -55,7 +55,7 @@ repositories {
}

dependencies {
testImplementation("io.github.hellocuriosity:model-forge:1.5.0.xx-SNAPSHOT")
testImplementation("io.github.hellocuriosity:model-forge:1.5.1.xx-SNAPSHOT")
}
```

Expand All @@ -70,7 +70,7 @@ repositories {
}
dependencies {
testImplementation 'io.github.hellocuriosity:model-forge:1.5.0.xx-SNAPSHOT'
testImplementation 'io.github.hellocuriosity:model-forge:1.5.1.xx-SNAPSHOT'
}
```

Expand Down
5 changes: 5 additions & 0 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,12 @@ allprojects {
group = "io.github.hellocuriosity"
version = System.getenv("VERSION") ?: "local"

apply(plugin = "org.jetbrains.kotlin.jvm")
apply(plugin = "org.jetbrains.kotlinx.kover")

kotlin {
jvmToolchain(17)
}
}

plugins {
Expand Down
4 changes: 4 additions & 0 deletions website/docs/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ sidebar_position: 4

# Changelog

## [1.5.1] - December 5th 2024

* Re-enable support for java 17

## [1.5.0] - October 31st 2024

* Auto generation for additional types:
Expand Down
4 changes: 2 additions & 2 deletions website/docs/getting-started/gradle-dependency.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Add the dependency to your `build.gradle` file to get started:

```kotlin
dependencies {
testImplementation("io.github.hellocuriosity:model-forge:1.5.0")
testImplementation("io.github.hellocuriosity:model-forge:1.5.1")
}
```

Expand All @@ -22,6 +22,6 @@ repositories {
}

dependencies {
testImplementation("io.github.hellocuriosity:model-forge:1.5.0.xx-SNAPSHOT")
testImplementation("io.github.hellocuriosity:model-forge:1.5.1.xx-SNAPSHOT")
}
```

0 comments on commit 020b93b

Please sign in to comment.