Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release v0.8.1 #64

Merged
merged 4 commits into from
Aug 20, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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.8.1] - 2023-08-20

### Fixed

- Fixed Pitest compatibility issue.

## [0.8.0] - 2023-08-20

### Added
Expand Down Expand Up @@ -137,7 +143,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.8.0...HEAD
[Unreleased]: https://github.com/refinedmods/refinedarchitect/compare/v0.8.1...HEAD

[0.8.1]: https://github.com/refinedmods/refinedarchitect/compare/v0.8.0...v0.8.1

[0.8.0]: https://github.com/refinedmods/refinedarchitect/compare/v0.7.1...v0.8.0

Expand Down
4 changes: 2 additions & 2 deletions helper.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -93,8 +93,8 @@ allprojects {
ext.enableMutationTesting = {
apply plugin: info.solidsoft.gradle.pitest.PitestPlugin
pitest {
junit5PluginVersion = "1.2.0"
pitestVersion = "1.14.4"
junit5PluginVersion = "1.1.2"
pitestVersion = "1.10.4"
outputFormats.set(['HTML'])
mutationThreshold.set(90)
coverageThreshold.set(80)
Expand Down
Loading