Skip to content

Commit 5f13398

Browse files
authored
Merge pull request #36 from domaframework/doc/changelog-update-0.3.1
Changelog update - `0.3.1`
2 parents 2ba92c9 + d855484 commit 5f13398

File tree

2 files changed

+43
-1
lines changed

2 files changed

+43
-1
lines changed

CHANGELOG.md

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,47 @@
22

33
## [Unreleased]
44

5+
## [0.3.1] - 2025-03-11
6+
7+
### Bug Fixes
8+
9+
- Fix: Reference checks for repeated elements in the for directive do not work correctly ([#20])
10+
- Fix: element type condition checking in DAO argument usage check. ([#21])
11+
12+
### Maintenance
13+
14+
- Fix:Release draft generation is delegated to release-drafter ([#35])
15+
- Add: Update CHANGELOG.md Action ([#34])
16+
- Fix: release-raft should only be run on the main branch ([#26])
17+
- Add Develop Build Number ([#25])
18+
19+
### Dependency Updates
20+
21+
- Fix: IntelliJ Platform version upgrades ([#27])
22+
- Update dependency org.jetbrains.intellij.platform to v2.3.0 ([#10])
23+
- Change the library version upgrade settings ([#24])
24+
- Update dependency gradle to v8.13 ([#9])
25+
- Update dependency ubuntu to v24 ([#12])
26+
- Update dependency org.seasar.doma:doma-core to v3.5.1 ([#11])
27+
- Update dependency org.slf4j:slf4j-api to v2.0.17 ([#8])
28+
- Update dependency ch.qos.logback:logback-classic to v1.5.17 ([#7])
29+
30+
[#20]:https://github.com/domaframework/doma-tools-for-intellij/pull/20
31+
[#21]:https://github.com/domaframework/doma-tools-for-intellij/pull/21
32+
[#35]:https://github.com/domaframework/doma-tools-for-intellij/pull/35
33+
[#34]:https://github.com/domaframework/doma-tools-for-intellij/pull/34
34+
[#26]:https://github.com/domaframework/doma-tools-for-intellij/pull/26
35+
[#25]:https://github.com/domaframework/doma-tools-for-intellij/pull/25
36+
[#27]:https://github.com/domaframework/doma-tools-for-intellij/pull/27
37+
[#10]:https://github.com/domaframework/doma-tools-for-intellij/pull/10
38+
[#24]:https://github.com/domaframework/doma-tools-for-intellij/pull/24
39+
[#9]:https://github.com/domaframework/doma-tools-for-intellij/pull/9
40+
[#12]:https://github.com/domaframework/doma-tools-for-intellij/pull/12
41+
[#11]:https://github.com/domaframework/doma-tools-for-intellij/pull/11
42+
[#8]:https://github.com/domaframework/doma-tools-for-intellij/pull/8
43+
[#7]:https://github.com/domaframework/doma-tools-for-intellij/pull/7
44+
45+
546
## [0.3.0] - 2025-03-07
647

748
### Dao Support Features
@@ -36,3 +77,4 @@
3677

3778
[Unreleased]: https://github.com/domaframework/doma-tools-for-intellij/commits/main
3879
[0.3.0]: https://github.com/domaframework/doma-tools-for-intellij/compare/v0.3.0
80+
[0.3.1]: https://github.com/domaframework/doma-tools-for-intellij/compare/v0.3.0...0.3.1

build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -426,7 +426,7 @@ tasks.register("updateChangelog") {
426426
}
427427
val repoUrl = "https://github.com/domaframework/doma-tools-for-intellij"
428428
changelogFile.writeText(updatedContent)
429-
changelogFile.appendText("[$newVersion]: $repoUrl/compare/$lastTag...v$newVersion\n")
429+
changelogFile.appendText("[$newVersion]: $repoUrl/compare/$lastTag...$newVersion\n")
430430

431431
val githubEnv = System.getenv("GITHUB_ENV")
432432
val envFile = File(githubEnv)

0 commit comments

Comments
 (0)