Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 28 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
# Changelog

## [0.2.0]

### Added
- Added optional git initialization for new projects (#16)
- Added automatic git staging option (#14)
- Added man page support and improved help documentation (#13)
- Implemented configuration file support (#12)
- Added settings panel for better user configuration (#11)
- Added ktlint and detekt options for new features (#8)
- Added app module selector for new features (#6)
- Added Gradle check task validation (#5)

### Changed
- Improved version catalog logic and fixed related bugs
- Simplified version catalog implementation (#9)
- Moved all requests to a dedicated request package
- Updated plugin name and template thumbnail
- Improved README documentation

### Fixed
- Fixed multiple generation glitches
- Fixed issue where new architecture module option was shown with existing modules (#7)
- Various bug fixes in version catalog logic

## [0.1.0] - Initial Release
- Initial release of the Clean Architecture Generator plugin
33 changes: 32 additions & 1 deletion plugin/src/main/resources/META-INF/plugin.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,38 @@
Guidelines: https://plugins.jetbrains.com/docs/marketplace/best-practices-for-listing.html#plugin-name -->
<name>Clean Architecture Generator (CAG)</name>

<version>0.1.0</version>
<version>0.2.0</version>

<change-notes><![CDATA[
<h2>0.2.0</h2>
<h3>Added</h3>
<ul>
<li>Added optional git initialization for new projects (#16)</li>
<li>Added automatic git staging option (#14)</li>
<li>Added man page support and improved help documentation (#13)</li>
<li>Implemented configuration file support (#12)</li>
<li>Added settings panel for better user configuration (#11)</li>
<li>Added ktlint and detekt options for new features (#8)</li>
<li>Added app module selector for new features (#6)</li>
<li>Added Gradle check task validation (#5)</li>
</ul>

<h3>Changed</h3>
<ul>
<li>Improved version catalog logic and fixed related bugs</li>
<li>Simplified version catalog implementation (#9)</li>
<li>Moved all requests to a dedicated request package</li>
<li>Updated plugin name and template thumbnail</li>
<li>Improved README documentation</li>
</ul>

<h3>Fixed</h3>
<ul>
<li>Fixed multiple generation glitches</li>
<li>Fixed issue where new architecture module option was shown for existing modules (#7)</li>
<li>Various bug fixes in version catalog logic</li>
</ul>
]]></change-notes>

<!-- A displayed Vendor name or Organization ID displayed on the Plugins Page. -->
<vendor url="https://uk.linkedin.com/in/eranboudjnah">Mitteloupe Limited</vendor>
Expand Down