Skip to content

Commit 8e1b9a5

Browse files
committed
Changelog update - 0.6.0
1 parent d36f02f commit 8e1b9a5

File tree

4 files changed

+46
-3
lines changed

4 files changed

+46
-3
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.6.0] - 2025-04-30
648

749
### New Features
@@ -220,3 +262,4 @@
220262
[#95]: https://github.com/domaframework/doma-tools-for-intellij/pull/95
221263
[#96]: https://github.com/domaframework/doma-tools-for-intellij/pull/96
222264
[#99]: https://github.com/domaframework/doma-tools-for-intellij/pull/99
265+
[0.6.0]: https://github.com/domaframework/doma-tools-for-intellij/compare/0.5.0...0.6.0

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.1-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.1-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.1-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)