Skip to content

Commit 49f7968

Browse files
authored
Bumped version to 0.4.1. (#60)
1 parent 698f843 commit 49f7968

File tree

6 files changed

+57
-17
lines changed

6 files changed

+57
-17
lines changed

.idea/dictionaries/project.xml

Lines changed: 7 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/kotlinc.xml

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

CHANGELOG.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,23 @@
11
# Changelog
22

3+
## [0.4.1]
4+
5+
### Added
6+
7+
- Added missing dynamic version catalog dependencies. (#59)
8+
- Added coroutine module to Gradle settings when generating architecture module. (#58)
9+
- Created `FUNDING.yml`. (#55)
10+
11+
### Changed
12+
13+
- Updated `README.md` with reference to the 2nd Edition of Clean Architecture for Android. (#53)
14+
- Corrected the README path in `CONTRIBUTING.md`.
15+
16+
### Fixed
17+
18+
- Removed redundant generated blank line. (#57)
19+
- Update data source name on edit. (#56)
20+
321
## [0.4.0]
422

523
### Added

cli/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ plugins {
66
}
77

88
group = "com.mitteloupe.cag"
9-
version = "0.4.0"
9+
version = "0.4.1"
1010

1111
repositories {
1212
mavenCentral()

plugin/build.gradle.kts

Lines changed: 19 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,25 @@ dependencies {
4545
intellijPlatform {
4646
pluginConfiguration {
4747
changeNotes =
48-
"""## [0.4.0]
48+
"""## [0.4.1]
49+
50+
### Added
51+
52+
- Added missing dynamic version catalog dependencies. (#59)
53+
- Added coroutine module to Gradle settings when generating architecture module. (#58)
54+
- Created `FUNDING.yml`. (#55)
55+
56+
### Changed
57+
58+
- Updated `README.md` with reference to the 2nd Edition of Clean Architecture for Android. (#53)
59+
- Corrected the README path in `CONTRIBUTING.md`.
60+
61+
### Fixed
62+
63+
- Removed redundant generated blank line. (#57)
64+
- Update data source name on edit. (#56)
65+
66+
## [0.4.0]
4967
5068
### Added
5169

plugin/src/main/resources/META-INF/plugin.xml

Lines changed: 9 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -7,30 +7,27 @@
77
Guidelines: https://plugins.jetbrains.com/docs/marketplace/best-practices-for-listing.html#plugin-name -->
88
<name>Clean Architecture Generator (CAG)</name>
99

10-
<version>0.4.0</version>
10+
<version>0.4.1</version>
1111

1212
<change-notes><![CDATA[
13-
<h2>0.4.0</h2>
13+
<h2>0.4.1</h2>
1414
<h3>Added</h3>
1515
<ul>
16-
<li>Added dependency injection (DI) support across CLI, plugin, and templates, including options for Hilt and Koin (#39, #40, #41, #42, #43, #44, #45, #49, #50)</li>
17-
<li>Added hot-reload functionality to new project template (#48)</li>
18-
<li>Added plugin icon to README.md (#46, #47)</li>
16+
<li>Added missing dynamic version catalog dependencies. (#59)</li>
17+
<li>Added coroutine module to Gradle settings when generating architecture module. (#58)</li>
18+
<li>Created <code>FUNDING.yml</code>. (#55)</li>
1919
</ul>
2020
2121
<h3>Changed</h3>
2222
<ul>
23-
<li>Polished and updated generated MainActivity and Application files (#34)</li>
24-
<li>Consolidated and improved help contents (#43)</li>
25-
<li>Broke down code generator for better maintainability (#36)</li>
26-
<li>Tightened Hilt integration and decoupled it from core libraries (#35, #37)</li>
27-
<li>Updated all dependencies and reformatted codebase (#33)</li>
28-
<li>Tidied and updated version catalog in generated projects (#32)</li>
23+
<li>Updated <code>README.md</code> with reference to the 2nd Edition of Clean Architecture for Android. (#53)</li>
24+
<li>Corrected the README path in <code>CONTRIBUTING.md</code>.</li>
2925
</ul>
3026
3127
<h3>Fixed</h3>
3228
<ul>
33-
<li>Limited visibility of DI-related code</li>
29+
<li>Removed redundant generated blank line. (#57)</li>
30+
<li>Update data source name on edit. (#56)</li>
3431
</ul>
3532
]]></change-notes>
3633

0 commit comments

Comments
 (0)