Skip to content

Commit 66983bb

Browse files
committed
Changelog update - 0.6.0
1 parent f2a26bb commit 66983bb

File tree

5 files changed

+47
-4
lines changed

5 files changed

+47
-4
lines changed

CHANGELOG.md

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,48 @@
4444
[#120]:https://github.com/domaframework/doma-tools-for-intellij/pull/120
4545

4646

47+
## [0.6.0] - 2025-04-30
48+
49+
### New Features
50+
51+
- Add For Item Element Documentation ([#126])
52+
- resolution for elements defined in the %for directive ([#117])
53+
- File jump in jar ([#110])
54+
- Add A reference to the SQL symbol type definer ([#107])
55+
56+
### Bug Fixes
57+
58+
- Added a condition to output logs only when references are resolved ([#128])
59+
- Fix: StringIndexOutOfBoundsException: Range In FileTypeCheck ([#122])
60+
- Support reference resolution for bind variables that reference classpath resources within JAR files. ([#115])
61+
- Fix:sql formatter second option indent ([#102])
62+
- Update changelog command and fix tag sorting in build.gradle.kts ([#104])
63+
- Update changelog and improve version handling ([#103])
64+
65+
### Maintenance
66+
67+
- Overwriting a development version with a release version ([#109])
68+
69+
### Dependency Updates
70+
71+
- Update dependency gradle to v8.14 ([#121])
72+
- Update dependency com.fasterxml.jackson.module:jackson-module-kotlin to v2.19.0 ([#120])
73+
74+
[#126]:https://github.com/domaframework/doma-tools-for-intellij/pull/126
75+
[#117]:https://github.com/domaframework/doma-tools-for-intellij/pull/117
76+
[#110]:https://github.com/domaframework/doma-tools-for-intellij/pull/110
77+
[#107]:https://github.com/domaframework/doma-tools-for-intellij/pull/107
78+
[#128]:https://github.com/domaframework/doma-tools-for-intellij/pull/128
79+
[#122]:https://github.com/domaframework/doma-tools-for-intellij/pull/122
80+
[#115]:https://github.com/domaframework/doma-tools-for-intellij/pull/115
81+
[#102]:https://github.com/domaframework/doma-tools-for-intellij/pull/102
82+
[#104]:https://github.com/domaframework/doma-tools-for-intellij/pull/104
83+
[#103]:https://github.com/domaframework/doma-tools-for-intellij/pull/103
84+
[#109]:https://github.com/domaframework/doma-tools-for-intellij/pull/109
85+
[#121]:https://github.com/domaframework/doma-tools-for-intellij/pull/121
86+
[#120]:https://github.com/domaframework/doma-tools-for-intellij/pull/120
87+
88+
4789
## [0.5.0] - 2025-04-14
4890

4991
### New Features
@@ -230,3 +272,4 @@
230272
[0.4.0]: https://github.com/domaframework/doma-tools-for-intellij/compare/0.3.2...0.4.0
231273
[0.5.0]: https://github.com/domaframework/doma-tools-for-intellij/compare/0.4.0...0.5.0
232274
[0.6.0]: https://github.com/domaframework/doma-tools-for-intellij/compare/0.5.0...0.6.0
275+
[0.6.0]: https://github.com/domaframework/doma-tools-for-intellij/compare/0.5.0...0.6.0

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
pluginGroup = org.domaframework.doma.intellij
22
pluginName = Doma Tools for IntelliJ
33
pluginRepositoryUrl = https://github.com/domaframework/doma-tools-for-intellij
4-
pluginVersion = 0.6.0-beta
4+
pluginVersion = 0.6.0
55

66
pluginSinceBuild=231
77

src/main/kotlin/org/domaframework/doma/intellij/common/PluginUtil.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ import com.intellij.ide.plugins.PluginManagerCore
1919
import com.intellij.openapi.extensions.PluginId
2020

2121
const val PLUGIN_ID = "org.domaframework.doma.intellij"
22-
const val PLUGIN_VERSION = "0.6.0-beta"
22+
const val PLUGIN_VERSION = "0.6.0"
2323

2424
open class PluginUtil {
2525
companion object {

src/main/resources/logback-test.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<configuration scan="true">
33
<property resource="logback.properties" />
44
<property name="LOG_FILE_BASE_DIR" value="${org.domaframework.doma.intellij.log.path:-/doma-tools}" />
5-
<property name="LOG_FILE_VERSION" value="${org.domaframework.doma.intellij.plugin.version:-0.6.0-beta}" />
5+
<property name="LOG_FILE_VERSION" value="${org.domaframework.doma.intellij.plugin.version:-0.6.0}" />
66

77
<appender name="STDOUT" class="ch.qos.logback.core.ConsoleAppender">
88
<encoder>

src/main/resources/logback.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<configuration scan="true">
33
<property resource="logback.properties" />
44
<property name="LOG_FILE_BASE_DIR" value="${org.domaframework.doma.intellij.log.path:-/doma-tools}" />
5-
<property name="LOG_FILE_VERSION" value="${org.domaframework.doma.intellij.plugin.version:-0.6.0-beta}" />
5+
<property name="LOG_FILE_VERSION" value="${org.domaframework.doma.intellij.plugin.version:-0.6.0}" />
66

77
<appender name="STDOUT" class="ch.qos.logback.core.ConsoleAppender">
88
<encoder>

0 commit comments

Comments
 (0)