Skip to content

Commit 81646a0

Browse files
committed
Prepare for release 0.4.0.
1 parent 98d998d commit 81646a0

File tree

4 files changed

+10
-2
lines changed

4 files changed

+10
-2
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff 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)

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Contributing to DeckBox
1+
# Contributing to Kimchi
22

33
## Issues
44

Dangerfile.df.kts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff 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")

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,4 +41,4 @@ POM_DEVELOPER_ID=r0adkll
4141
POM_DEVELOPER_NAME=Drew Heavner
4242
POM_DEVELOPER_URL=https://github.com/r0adkll
4343
POM_INCEPTION_YEAR=2024
44-
VERSION_NAME=0.4.0-SNAPSHOT
44+
VERSION_NAME=0.4.0

0 commit comments

Comments
 (0)