Skip to content

Commit b45779a

Browse files
igorwojdarenovate[bot]nataliapeterwasJonathanSarcoguiguegon
committed
Main To Develop (#916)
* Upgrade version to 0.13.0 * Update check kttx snippets * Update check kttx snippets * Update check kttx snippets * Update version * Update scripts * Update scripts * Update dev readme * Release `v0.13.0` (#688) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Igor Wojda <igor.wojda@gmail.com> Co-authored-by: NataliaPeterwas <111683562+nataliapeterwas@users.noreply.github.com> Co-authored-by: Jony Sarco <jfe.sarco@gmail.com> * Revert "Release `v0.13.0`" (#689) * Update Konsist in starter projects to Konsist `v0.13.0` (#697) * Update Kotest Snippets (#701) * Replace REGEX to allow using .. as wildcard again (#720) * Update README.md (#771) * Fixed broken link to the getting started guide. (#827) * Fix wrong detection of Git root project dir (#831) Detection never worked before because Git creates directory called '.git', while code was checking 'git'. * Upd linters * Upd readme --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: NataliaPeterwas <111683562+nataliapeterwas@users.noreply.github.com> Co-authored-by: Jony Sarco <jfe.sarco@gmail.com> Co-authored-by: Guillermo Guerrero González <3263397+guiguegon@users.noreply.github.com> Co-authored-by: Atiq Ur Rehman <6600985@gmail.com> Co-authored-by: Piotr Kubowicz <piotr.kubowicz@gmail.com>
1 parent d1595a0 commit b45779a

File tree

3 files changed

+7
-5
lines changed

3 files changed

+7
-5
lines changed

DeveloperReadme.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
1. Create `hotfix/KON-XXX-...` branch from `main`
2424
2. Fix the bug and open PR targeting `mian`
2525
3. Merge the PR
26-
4. Create `release/vx.y.z` branch from `main`
26+
4. Create `release/vX.Y.Z` branch from `main`
2727
5. Update Konsist version
2828
1. [gradle.properties](gradle.properties) file
2929
2. [README.md](README.md) file
@@ -32,8 +32,8 @@
3232
8. Switch to the `main` branch and pull changes
3333
9. Run `./gradlew publish -Pkonsist.releaseTarget=release` on the `main` branch to release a new version
3434
10. Create a new [GitHub release](https://github.com/LemonAppDev/konsist/releases/new)
35-
1. set `vx.y.z` as tag version
36-
2. set `vx.y.z` as release title
35+
1. set `vX.Y.Z` as tag version
36+
2. set `vX.Y.Z` as release title
3737
11. Update Konsist version in the
3838
Konsist [Quick Start](https://app.gitbook.com/o/PQj191UX5M2C2XxCZuYO/s/RYeSMx6WDKivnwWx7PdP/getting-started/getting-started)
3939
docs page
@@ -47,7 +47,7 @@ fix starter link
4747
## Production Release
4848

4949
1. Merge `main` to `develop`
50-
2. Create `release/vx.y.z` branch from `develop`
50+
2. Create `release/vX.Y.Z` branch from `develop`
5151
3. Update Konsist version
5252
1. [gradle.properties](gradle.properties) file
5353
2. [README.md](README.md) file

gradle.properties

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
org.gradle.jvmargs=-Xms512M -Xmx4g -Dkotlin.daemon.jvm.options="-Xmx1g"
12

23
org.gradle.parallel=true
34
org.gradle.daemon=true

lib/src/konsistTest/kotlin/com/lemonappdev/konsist/core/DeclarationKonsistTest.kt

+2-1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ package com.lemonappdev.konsist.core
22

33
import com.lemonappdev.konsist.api.Konsist
44
import com.lemonappdev.konsist.api.ext.list.returnTypes
5+
import com.lemonappdev.konsist.api.ext.list.sourceDeclarations
56
import com.lemonappdev.konsist.api.ext.list.types
67
import com.lemonappdev.konsist.api.ext.list.withoutName
78
import com.lemonappdev.konsist.api.verify.assertFalse
@@ -40,7 +41,7 @@ class DeclarationKonsistTest {
4041
declarationPackageScope
4142
.properties()
4243
.types
43-
.assertFalse { it.sourceType.endsWith("Impl") }
44+
.sourceDeclarations
4445
}
4546

4647
@Test

0 commit comments

Comments
 (0)