File tree Expand file tree Collapse file tree 4 files changed +10
-2
lines changed
Expand file tree Collapse file tree 4 files changed +10
-2
lines changed Original file line number Diff line number Diff line change @@ -21,6 +21,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
2121### Other Notes & Contributions
2222-->
2323
24+ ## [ 0.4.0] - 2024-09-14
25+
2426### Fixed
2527
2628- Fixed explicit parent components with @MergeComponent components - [ #52 ] ( https://github.com/r0adkll/kimchi/pull/52 )
Original file line number Diff line number Diff line change 1- # Contributing to DeckBox
1+ # Contributing to Kimchi
22
33## Issues
44
Original file line number Diff line number Diff line change @@ -7,6 +7,7 @@ danger(args) {
77 val allSourceFiles = git.modifiedFiles + git.createdFiles
88 val changelogChanged = allSourceFiles.contains(" CHANGELOG.md" )
99 val sourceChanges = allSourceFiles.firstOrNull { it.contains(" src" ) }
10+ val testChanges = allSourceFiles.firstOrNull { it.contains(" test" ) }
1011
1112 onGitHub {
1213 val isTrivial = pullRequest.title.contains(" #trivial" )
@@ -22,6 +23,11 @@ danger(args) {
2223 )
2324 }
2425
26+ // Testing
27+ if (sourceChanges != null && testChanges == null ) {
28+ fail(" any changes to library code should have accompanied tests. Please add tests to cover your changes." )
29+ }
30+
2531 // Big PR Check
2632 if ((pullRequest.additions ? : 0 ) - (pullRequest.deletions ? : 0 ) > 300 ) {
2733 warn(" Big PR, try to keep changes smaller if you can" )
Original file line number Diff line number Diff line change @@ -41,4 +41,4 @@ POM_DEVELOPER_ID=r0adkll
4141POM_DEVELOPER_NAME =Drew Heavner
4242POM_DEVELOPER_URL =https://github.com/r0adkll
4343POM_INCEPTION_YEAR =2024
44- VERSION_NAME =0.4.0-SNAPSHOT
44+ VERSION_NAME =0.4.0
You can’t perform that action at this time.
0 commit comments