Skip to content

Commit 9e0da98

Browse files
authored
Merge pull request #163 from refinedmods/release/0.16.6
Release v0.16.6
2 parents 1c8362e + 2dfe92b commit 9e0da98

File tree

3 files changed

+27
-2
lines changed

3 files changed

+27
-2
lines changed

.github/CONTRIBUTING.md

+17
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,23 @@ When contributing to this repository, please first discuss the change you wish t
44
[GitHub issues](https://github.com/refinedmods/refinedarchitect/issues), [Discord](https://discordapp.com/invite/VYzsydb),
55
or any other method with the owners of this repository before making a change.
66

7+
## Quickstart
8+
9+
These are the most important things to know before contributing (also explained in more detail later in this document):
10+
11+
- Commit messages must adhere to [Conventional Commits](https://www.conventionalcommits.org/en/v1.0.0/).
12+
- Branch names must be formatted correctly. The format is `{category}/GH-{issue number}/{lowercase-description}`. You
13+
can also use `NO-ISSUE` instead of a GitHub issue number.
14+
Category must match a
15+
category [used in our Commitlint config](https://github.com/conventional-changelog/commitlint/tree/master/%40commitlint/config-conventional#type-enum).
16+
You can also use `NO-ISSUE` instead of a GitHub issue number.
17+
- We use [Checkstyle](https://checkstyle.sourceforge.io/) in our build workflow to validate coding style. It is
18+
recommended to import the [config/checkstyle/checkstyle.xml](../config/checkstyle/checkstyle.xml)
19+
or [config/intellij-code-style.xml](../config/intellij-code-style.xml) file into your
20+
IDE, so that formatting rules are respected.
21+
- Branches are kept up to date by rebasing, not by merging.
22+
- For non-technical changes, adding a changelog entry is required.
23+
724
## Pull requests
825

926
- Keep your pull request (PR) as small as possible, this makes reviewing easier.

CHANGELOG.md

+9-1
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+
## [0.16.6] - 2024-07-14
11+
12+
### Fixed
13+
14+
- Fixed the code coverage report path.
15+
1016
## [0.16.5] - 2024-07-14
1117

1218
### Fixed
@@ -327,7 +333,9 @@ to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
327333
- Gradle helpers for Fabric and Forge projects.
328334
- CI workflows.
329335

330-
[Unreleased]: https://github.com/refinedmods/refinedarchitect/compare/v0.16.5...HEAD
336+
[Unreleased]: https://github.com/refinedmods/refinedarchitect/compare/v0.16.6...HEAD
337+
338+
[0.16.6]: https://github.com/refinedmods/refinedarchitect/compare/v0.16.5...v0.16.6
331339

332340
[0.16.5]: https://github.com/refinedmods/refinedarchitect/compare/v0.16.4...v0.16.5
333341

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ open class BaseExtension(private val project: Project) {
131131
property("sonar.projectKey", projectKey)
132132
property("sonar.organization", organization)
133133
property("sonar.host.url", "https://sonarcloud.io")
134-
property("sonar.coverage.jacoco.xmlReportPaths", "${project.layout.buildDirectory.get()}/reports/jacoco/codeCoverageReport/codeCoverageReport.xml")
134+
property("sonar.coverage.jacoco.xmlReportPaths", "${project.layout.buildDirectory.get()}/reports/jacoco/codeCoverageReportAggregate/codeCoverageReportAggregate.xml")
135135
}
136136
}
137137
}

0 commit comments

Comments
 (0)