From e73665138fc5bdeff1a98c5a8d6e2ad54030c5cd Mon Sep 17 00:00:00 2001 From: Jan Galinski Date: Sat, 8 Feb 2025 12:50:19 +0100 Subject: [PATCH 1/7] Update for next development version --- _build/parent/pom.xml | 2 +- _build/report-generator/pom.xml | 2 +- _itest/builder-itest/pom.xml | 2 +- _itest/pom.xml | 2 +- _itest/spi-itest/pom.xml | 2 +- kotlin-code-generation-bom/pom.xml | 2 +- kotlin-code-generation-test/pom.xml | 2 +- kotlin-code-generation/pom.xml | 2 +- pom.xml | 2 +- 9 files changed, 9 insertions(+), 9 deletions(-) diff --git a/_build/parent/pom.xml b/_build/parent/pom.xml index 5698381..268fdaa 100644 --- a/_build/parent/pom.xml +++ b/_build/parent/pom.xml @@ -5,7 +5,7 @@ io.toolisticon.kotlin.generation._ kotlin-code-generation-root - 0.1.1 + 0.1.2-SNAPSHOT ../../pom.xml diff --git a/_build/report-generator/pom.xml b/_build/report-generator/pom.xml index 79cc1f6..eb9f806 100644 --- a/_build/report-generator/pom.xml +++ b/_build/report-generator/pom.xml @@ -5,7 +5,7 @@ io.toolisticon.kotlin.generation._ kotlin-code-generation-parent - 0.1.1 + 0.1.2-SNAPSHOT ../parent/pom.xml diff --git a/_itest/builder-itest/pom.xml b/_itest/builder-itest/pom.xml index 18d1098..c1224fc 100644 --- a/_itest/builder-itest/pom.xml +++ b/_itest/builder-itest/pom.xml @@ -5,7 +5,7 @@ io.toolisticon.kotlin.generation._ kotlin-code-generation-itest-root - 0.1.1 + 0.1.2-SNAPSHOT io.toolisticon.kotlin.generation.itest diff --git a/_itest/pom.xml b/_itest/pom.xml index a3eafa3..2c5b93f 100644 --- a/_itest/pom.xml +++ b/_itest/pom.xml @@ -5,7 +5,7 @@ io.toolisticon.kotlin.generation._ kotlin-code-generation-parent - 0.1.1 + 0.1.2-SNAPSHOT ../_build/parent/pom.xml diff --git a/_itest/spi-itest/pom.xml b/_itest/spi-itest/pom.xml index 02b88ce..85e17db 100644 --- a/_itest/spi-itest/pom.xml +++ b/_itest/spi-itest/pom.xml @@ -5,7 +5,7 @@ io.toolisticon.kotlin.generation._ kotlin-code-generation-itest-root - 0.1.1 + 0.1.2-SNAPSHOT io.toolisticon.kotlin.generation.itest diff --git a/kotlin-code-generation-bom/pom.xml b/kotlin-code-generation-bom/pom.xml index 87e322d..dc6d751 100644 --- a/kotlin-code-generation-bom/pom.xml +++ b/kotlin-code-generation-bom/pom.xml @@ -5,7 +5,7 @@ io.toolisticon.kotlin.generation._ kotlin-code-generation-root - 0.1.1 + 0.1.2-SNAPSHOT io.toolisticon.kotlin.generation diff --git a/kotlin-code-generation-test/pom.xml b/kotlin-code-generation-test/pom.xml index 1ef68f0..1abfad6 100644 --- a/kotlin-code-generation-test/pom.xml +++ b/kotlin-code-generation-test/pom.xml @@ -5,7 +5,7 @@ io.toolisticon.kotlin.generation._ kotlin-code-generation-parent - 0.1.1 + 0.1.2-SNAPSHOT ../_build/parent/pom.xml diff --git a/kotlin-code-generation/pom.xml b/kotlin-code-generation/pom.xml index 76359ac..3f80d06 100644 --- a/kotlin-code-generation/pom.xml +++ b/kotlin-code-generation/pom.xml @@ -5,7 +5,7 @@ io.toolisticon.kotlin.generation._ kotlin-code-generation-parent - 0.1.1 + 0.1.2-SNAPSHOT ../_build/parent/pom.xml diff --git a/pom.xml b/pom.xml index 522232d..0805f95 100644 --- a/pom.xml +++ b/pom.xml @@ -11,7 +11,7 @@ io.toolisticon.kotlin.generation._ kotlin-code-generation-root - 0.1.1 + 0.1.2-SNAPSHOT pom: ${project.artifactId} Root of kotlin-code-generation From 577d7de27fa79dada06436c67c65f4fa3ee97060 Mon Sep 17 00:00:00 2001 From: Jan Galinski Date: Sun, 9 Feb 2025 01:39:47 +0100 Subject: [PATCH 2/7] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 00ea35e..7dd80d5 100644 --- a/README.md +++ b/README.md @@ -8,7 +8,7 @@ The one-stop lib for code generation for kotlin (jvm) and code generation testin [![Build Status](https://github.com/toolisticon/kotlin-code-generation/workflows/Development%20branches/badge.svg)](https://github.com/toolisticon/kotlin-code-generation/actions) [![Codacy Badge](https://app.codacy.com/project/badge/Grade/e493c246c3684b95a2ef097ae912d45a)](https://app.codacy.com/gh/toolisticon/kotlin-code-generation/dashboard?utm_source=gh&utm_medium=referral&utm_content=&utm_campaign=Badge_grade) [![codecov](https://codecov.io/gh/toolisticon/kotlin-code-generation/graph/badge.svg?token=kyJ82m5DAT)](https://codecov.io/gh/toolisticon/kotlin-code-generation) -[![Kotlin](https://img.shields.io/badge/kotlin-2.1.0-blue.svg?logo=kotlin)](http://kotlinlang.org) +[![Kotlin](https://img.shields.io/badge/kotlin-2.1.10-blue.svg?logo=kotlin)](http://kotlinlang.org) [![sponsored](https://img.shields.io/badge/sponsoredBy-Holisticon-RED.svg)](https://holisticon.de/) [![javadoc](https://javadoc.io/badge2/io.toolisticon.kotlin.generation/kotlin-code-generation/javadoc.svg)](https://javadoc.io/doc/io.toolisticon.kotlin.generation/kotlin-code-generation) From 18298bdc757df1ac507233f5f3c00e78ca1856d2 Mon Sep 17 00:00:00 2001 From: Jan Galinski Date: Mon, 24 Feb 2025 23:07:40 +0100 Subject: [PATCH 3/7] Update 2_feature_request.md --- .github/ISSUE_TEMPLATE/2_feature_request.md | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/ISSUE_TEMPLATE/2_feature_request.md b/.github/ISSUE_TEMPLATE/2_feature_request.md index 382aec2..ae51c18 100644 --- a/.github/ISSUE_TEMPLATE/2_feature_request.md +++ b/.github/ISSUE_TEMPLATE/2_feature_request.md @@ -3,6 +3,7 @@ name: 'Feature request' about: 'Suggest a new feature or enhancement' title: labels: 'Type: enhancement' +type: 'Feature' assignees: --- From a5886b19e66385fac0ee4101e0e1729eb8641695 Mon Sep 17 00:00:00 2001 From: Jan Galinski Date: Mon, 24 Feb 2025 23:08:26 +0100 Subject: [PATCH 4/7] Update 1_bug_report.md --- .github/ISSUE_TEMPLATE/1_bug_report.md | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/ISSUE_TEMPLATE/1_bug_report.md b/.github/ISSUE_TEMPLATE/1_bug_report.md index e5ca7a8..34bfb58 100644 --- a/.github/ISSUE_TEMPLATE/1_bug_report.md +++ b/.github/ISSUE_TEMPLATE/1_bug_report.md @@ -3,6 +3,7 @@ name: 'Bug report' about: 'Report a bug' title: labels: 'Type: bug' +type: 'Bug' --- From d4caa480c1c5498698e6a7621dfb4dfa4987145e Mon Sep 17 00:00:00 2001 From: Jan Galinski Date: Mon, 24 Feb 2025 23:11:55 +0100 Subject: [PATCH 5/7] update parent fixes #60 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 0805f95..8e1928e 100644 --- a/pom.xml +++ b/pom.xml @@ -5,7 +5,7 @@ io.toolisticon.maven.parent maven-parent-kotlin-base - 2025.2.0 + 2025.2.1 From 99c28fc4fc5d879715fdd34e0980dc0808f78228 Mon Sep 17 00:00:00 2001 From: Jan Galinski Date: Tue, 25 Feb 2025 00:14:33 +0100 Subject: [PATCH 6/7] kotlin language level 2.0 fixes #61 --- pom.xml | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/pom.xml b/pom.xml index 8e1928e..587a360 100644 --- a/pom.xml +++ b/pom.xml @@ -26,11 +26,7 @@ kotlin-code-generation-test - - - 1.9 - 1.9 - + From 814217a4a418edaa7ba4f4d0c071c42196619bac Mon Sep 17 00:00:00 2001 From: Jan Galinski Date: Tue, 25 Feb 2025 00:52:13 +0100 Subject: [PATCH 7/7] Update for next development version --- _build/parent/pom.xml | 2 +- _build/report-generator/pom.xml | 2 +- _itest/builder-itest/pom.xml | 2 +- _itest/pom.xml | 2 +- _itest/spi-itest/pom.xml | 2 +- kotlin-code-generation-bom/pom.xml | 2 +- kotlin-code-generation-test/pom.xml | 2 +- kotlin-code-generation/pom.xml | 2 +- pom.xml | 2 +- 9 files changed, 9 insertions(+), 9 deletions(-) diff --git a/_build/parent/pom.xml b/_build/parent/pom.xml index 268fdaa..58c581f 100644 --- a/_build/parent/pom.xml +++ b/_build/parent/pom.xml @@ -5,7 +5,7 @@ io.toolisticon.kotlin.generation._ kotlin-code-generation-root - 0.1.2-SNAPSHOT + 0.1.2 ../../pom.xml diff --git a/_build/report-generator/pom.xml b/_build/report-generator/pom.xml index eb9f806..116c56c 100644 --- a/_build/report-generator/pom.xml +++ b/_build/report-generator/pom.xml @@ -5,7 +5,7 @@ io.toolisticon.kotlin.generation._ kotlin-code-generation-parent - 0.1.2-SNAPSHOT + 0.1.2 ../parent/pom.xml diff --git a/_itest/builder-itest/pom.xml b/_itest/builder-itest/pom.xml index c1224fc..9090211 100644 --- a/_itest/builder-itest/pom.xml +++ b/_itest/builder-itest/pom.xml @@ -5,7 +5,7 @@ io.toolisticon.kotlin.generation._ kotlin-code-generation-itest-root - 0.1.2-SNAPSHOT + 0.1.2 io.toolisticon.kotlin.generation.itest diff --git a/_itest/pom.xml b/_itest/pom.xml index 2c5b93f..dfcb29d 100644 --- a/_itest/pom.xml +++ b/_itest/pom.xml @@ -5,7 +5,7 @@ io.toolisticon.kotlin.generation._ kotlin-code-generation-parent - 0.1.2-SNAPSHOT + 0.1.2 ../_build/parent/pom.xml diff --git a/_itest/spi-itest/pom.xml b/_itest/spi-itest/pom.xml index 85e17db..227fec6 100644 --- a/_itest/spi-itest/pom.xml +++ b/_itest/spi-itest/pom.xml @@ -5,7 +5,7 @@ io.toolisticon.kotlin.generation._ kotlin-code-generation-itest-root - 0.1.2-SNAPSHOT + 0.1.2 io.toolisticon.kotlin.generation.itest diff --git a/kotlin-code-generation-bom/pom.xml b/kotlin-code-generation-bom/pom.xml index dc6d751..0a3ad06 100644 --- a/kotlin-code-generation-bom/pom.xml +++ b/kotlin-code-generation-bom/pom.xml @@ -5,7 +5,7 @@ io.toolisticon.kotlin.generation._ kotlin-code-generation-root - 0.1.2-SNAPSHOT + 0.1.2 io.toolisticon.kotlin.generation diff --git a/kotlin-code-generation-test/pom.xml b/kotlin-code-generation-test/pom.xml index 1abfad6..14fc347 100644 --- a/kotlin-code-generation-test/pom.xml +++ b/kotlin-code-generation-test/pom.xml @@ -5,7 +5,7 @@ io.toolisticon.kotlin.generation._ kotlin-code-generation-parent - 0.1.2-SNAPSHOT + 0.1.2 ../_build/parent/pom.xml diff --git a/kotlin-code-generation/pom.xml b/kotlin-code-generation/pom.xml index 3f80d06..f3a9b59 100644 --- a/kotlin-code-generation/pom.xml +++ b/kotlin-code-generation/pom.xml @@ -5,7 +5,7 @@ io.toolisticon.kotlin.generation._ kotlin-code-generation-parent - 0.1.2-SNAPSHOT + 0.1.2 ../_build/parent/pom.xml diff --git a/pom.xml b/pom.xml index 587a360..ab39d45 100644 --- a/pom.xml +++ b/pom.xml @@ -11,7 +11,7 @@ io.toolisticon.kotlin.generation._ kotlin-code-generation-root - 0.1.2-SNAPSHOT + 0.1.2 pom: ${project.artifactId} Root of kotlin-code-generation