Skip to content

Commit 322c612

Browse files
authored
Merge pull request #132 from domaframework/doc/changelog-update-0.6.0
Changelog update - `0.6.0`
2 parents 255ee96 + 3ecc94a commit 322c612

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
@@ -2,6 +2,48 @@
22

33
## [Unreleased]
44

5+
## [0.6.0] - 2025-04-30
6+
7+
### New Features
8+
9+
- Add For Item Element Documentation ([#126])
10+
- resolution for elements defined in the %for directive ([#117])
11+
- File jump in jar ([#110])
12+
- Add A reference to the SQL symbol type definer ([#107])
13+
14+
### Bug Fixes
15+
16+
- Added a condition to output logs only when references are resolved ([#128])
17+
- Fix: StringIndexOutOfBoundsException: Range In FileTypeCheck ([#122])
18+
- Support reference resolution for bind variables that reference classpath resources within JAR files. ([#115])
19+
- Fix:sql formatter second option indent ([#102])
20+
- Update changelog command and fix tag sorting in build.gradle.kts ([#104])
21+
- Update changelog and improve version handling ([#103])
22+
23+
### Maintenance
24+
25+
- Overwriting a development version with a release version ([#109])
26+
27+
### Dependency Updates
28+
29+
- Update dependency gradle to v8.14 ([#121])
30+
- Update dependency com.fasterxml.jackson.module:jackson-module-kotlin to v2.19.0 ([#120])
31+
32+
[#126]:https://github.com/domaframework/doma-tools-for-intellij/pull/126
33+
[#117]:https://github.com/domaframework/doma-tools-for-intellij/pull/117
34+
[#110]:https://github.com/domaframework/doma-tools-for-intellij/pull/110
35+
[#107]:https://github.com/domaframework/doma-tools-for-intellij/pull/107
36+
[#128]:https://github.com/domaframework/doma-tools-for-intellij/pull/128
37+
[#122]:https://github.com/domaframework/doma-tools-for-intellij/pull/122
38+
[#115]:https://github.com/domaframework/doma-tools-for-intellij/pull/115
39+
[#102]:https://github.com/domaframework/doma-tools-for-intellij/pull/102
40+
[#104]:https://github.com/domaframework/doma-tools-for-intellij/pull/104
41+
[#103]:https://github.com/domaframework/doma-tools-for-intellij/pull/103
42+
[#109]:https://github.com/domaframework/doma-tools-for-intellij/pull/109
43+
[#121]:https://github.com/domaframework/doma-tools-for-intellij/pull/121
44+
[#120]:https://github.com/domaframework/doma-tools-for-intellij/pull/120
45+
46+
547
## [0.5.0] - 2025-04-14
648

749
### New Features
@@ -187,3 +229,4 @@
187229
[0.3.2]: https://github.com/domaframework/doma-tools-for-intellij/compare/0.3.1...0.3.2
188230
[0.4.0]: https://github.com/domaframework/doma-tools-for-intellij/compare/0.3.2...0.4.0
189231
[0.5.0]: https://github.com/domaframework/doma-tools-for-intellij/compare/0.4.0...0.5.0
232+
[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)