Skip to content

Commit f1185bb

Browse files
authored
Merge pull request #205 from refinedmods/release/1.3.1
Release v1.3.1
2 parents a8a80df + 166c1de commit f1185bb

File tree

2 files changed

+10
-3
lines changed

2 files changed

+10
-3
lines changed

CHANGELOG.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,12 @@ to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

88
## [Unreleased]
99

10+
## [1.3.1] - 2025-08-22
11+
12+
### Fixed
13+
14+
- Fixed tests not being able to run.
15+
1016
## [1.3.0] - 2025-08-20
1117

1218
### Changed
@@ -434,7 +440,9 @@ to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
434440
- Gradle helpers for Fabric and Forge projects.
435441
- CI workflows.
436442

437-
[Unreleased]: https://github.com/refinedmods/refinedarchitect/compare/v1.3.0...HEAD
443+
[Unreleased]: https://github.com/refinedmods/refinedarchitect/compare/v1.3.1...HEAD
444+
445+
[1.3.1]: https://github.com/refinedmods/refinedarchitect/compare/v1.3.0...v1.3.1
438446

439447
[1.3.0]: https://github.com/refinedmods/refinedarchitect/compare/v1.2.0...v1.3.0
440448

refinedarchitect-plugin/src/main/kotlin/BaseExtension.kt

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -82,14 +82,13 @@ open class BaseExtension(private val project: Project) {
8282
mutationThreshold.set(90)
8383
coverageThreshold.set(80)
8484
}
85-
project.dependencies.add("testRuntimeOnly", "org.junit.platform:junit-platform-launcher")
86-
?.because("required for pitest")
8785
}
8886

8987
fun testing() {
9088
project.tasks.withType<Test>().forEach {
9189
it.useJUnitPlatform()
9290
}
91+
project.dependencies.add("testRuntimeOnly", "org.junit.platform:junit-platform-launcher")
9392
}
9493

9594
fun javadoc() {

0 commit comments

Comments
 (0)