Skip to content

Commit

Permalink
Merge pull request #94 from refinedmods/release/0.11.2
Browse files Browse the repository at this point in the history
Release v0.11.2
  • Loading branch information
raoulvdberge authored Jan 28, 2024
2 parents 60bfcfb + 91f1dec commit e2d817c
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 2 deletions.
10 changes: 9 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

## [0.11.2] - 2024-01-28

### Fixed

- Checkstyle incompatibility with Guava.

## [0.11.1] - 2024-01-28

### Fixed
Expand Down Expand Up @@ -180,7 +186,9 @@ to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
- Gradle helpers for Fabric and Forge projects.
- CI workflows.

[Unreleased]: https://github.com/refinedmods/refinedarchitect/compare/v0.11.1...HEAD
[Unreleased]: https://github.com/refinedmods/refinedarchitect/compare/v0.11.2...HEAD

[0.11.2]: https://github.com/refinedmods/refinedarchitect/compare/v0.11.1...v0.11.2

[0.11.1]: https://github.com/refinedmods/refinedarchitect/compare/v0.11.0...v0.11.1

Expand Down
8 changes: 7 additions & 1 deletion helper.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,13 @@ allprojects {

apply plugin: 'checkstyle'
checkstyle {
toolVersion = "10.12.6"
toolVersion = "10.13.0"
}
// https://github.com/checkstyle/checkstyle/issues/14211#issuecomment-1884129948
configurations.checkstyle {
resolutionStrategy.capabilitiesResolution.withCapability("com.google.collections:google-collections") {
select("com.google.guava:guava:0")
}
}

processResources {
Expand Down

0 comments on commit e2d817c

Please sign in to comment.