From be59ed195b58837fbbdf2d653b91951849b5bded Mon Sep 17 00:00:00 2001 From: skidus Date: Tue, 23 Sep 2025 23:11:39 +0700 Subject: [PATCH] docs: Update changeNotes in build.gradle.kts with latest release notes --- build.gradle.kts | 18 ++++++++++++++++-- 1 file changed, 16 insertions(+), 2 deletions(-) diff --git a/build.gradle.kts b/build.gradle.kts index bb9377c..212a1a5 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -5,7 +5,7 @@ plugins { } group = "com.sdk.generators.actionmodels" -version = "1.0.4" +version = "1.1.0" repositories { mavenCentral() @@ -37,7 +37,21 @@ intellijPlatform { } changeNotes = """ - Initial version + ## Release Notes + + ### New Features and Enhancements + + * **DTO Generation:** Introduced new functionality to generate Data Transfer Object (DTO) classes alongside ActionBeans. This includes new FreeMarker templates (`actionDTO.ftl`, `actionDTO.extend.ftl`) and updated logic in `GeneratorServices.java`. + * **ActionField and DTOField Enhancements:** Implemented enhancements related to the generation of `ActionField` and `DTOField` within the generated classes. + + ### Refactoring and Improvements + + * **Project Structure Refactoring:** The project structure has been reorganized. Generator-related classes were moved to a new package (`com.sdk.generators.actionmodels`), and template directory names were standardized to `src/main/resources/templates`. + * **Build System Updates:** Updated `build.gradle.kts`, `plugin.xml`, and Gradle wrapper files to reflect the structural and functional enhancements. + + ### Documentation + + * **GEMINI.md Added:** A comprehensive `GEMINI.md` file has been added to provide an overview of the project, its core technologies, build instructions, and development conventions, serving as essential context for future interactions. """.trimIndent() } }