Skip to content

Commit

Permalink
[Fix] Build with Java 8 (#110)
Browse files Browse the repository at this point in the history
Co-authored-by: Kyle <[hopeman1986@gmail.com]>
  • Loading branch information
hopeman15 and Kyle authored Sep 16, 2021
1 parent 7ac7a50 commit 2350804
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
uses: actions/setup-java@v2.3.0
with:
distribution: 'adopt'
java-version: '11'
java-version: '8'
cache: 'gradle'
- name: Lint
run: make lint
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
uses: actions/setup-java@v2.3.0
with:
distribution: 'adopt'
java-version: '11'
java-version: '8'
cache: 'gradle'
- name: Publish
run: |
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.MD
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## [0.7.4] - September 16th 2021

* Build with Java 8

## [0.7.3] - September 15th 2021

* Add GitHub Action dependencies to dependabot
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ Model Forge is a library to automate model generation for automated testing:

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

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

```groovy
dependencies {
testImplementation 'io.github.hellocuriosity:model-forge:0.7.3'
testImplementation 'io.github.hellocuriosity:model-forge:0.7.4'
}
```

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

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

Expand All @@ -68,7 +68,7 @@ repositories {
}
dependencies {
testImplementation 'io.github.hellocuriosity:model-forge:0.7.3.xx-SNAPSHOT'
testImplementation 'io.github.hellocuriosity:model-forge:0.7.4.xx-SNAPSHOT'
}
```

Expand Down

0 comments on commit 2350804

Please sign in to comment.