Skip to content

Commit 4ad6b57

Browse files
committed
Changelog update - 1.2.0
1 parent 56ec214 commit 4ad6b57

File tree

5 files changed

+44
-4
lines changed

5 files changed

+44
-4
lines changed

CHANGELOG.md

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

33
## [Unreleased]
44

5+
## [1.2.0] - 2025-08-04
6+
7+
### New Features
8+
9+
- Sql Format Official Version ([#289])
10+
11+
### Bug Fixes
12+
13+
- Support for Using `@DataType`-Annotated Records in DAO Method Return and Parameter Types ([#350])
14+
- Fix primitive type validation for DAO method return types ([#352])
15+
- Update Japanese localization for DAO parameter inspection messages ([#317])
16+
17+
### Dependency Updates
18+
19+
- Update dependency org.jetbrains.changelog to v2.3.0 ([#340])
20+
- Update dependency org.jetbrains.intellij.platform to v2.7.0 ([#339])
21+
- Update plugin spotless to v7.2.1 ([#327])
22+
- Update dependency com.pinterest.ktlint:ktlint-cli to v1.7.1 ([#326])
23+
- Update plugin spotless to v7.2.0 ([#325])
24+
- Update dependency com.fasterxml.jackson.module:jackson-module-kotlin to v2.19.2 ([#324])
25+
- Update dependency com.pinterest.ktlint:ktlint-cli to v1.7.0 ([#315])
26+
- Update dependency com.google.googlejavaformat:google-java-format to v1.28.0 ([#309])
27+
- Update plugin spotless to v7.1.0 ([#299])
28+
29+
[#289]:https://github.com/domaframework/doma-tools-for-intellij/pull/289
30+
[#350]:https://github.com/domaframework/doma-tools-for-intellij/pull/350
31+
[#352]:https://github.com/domaframework/doma-tools-for-intellij/pull/352
32+
[#317]:https://github.com/domaframework/doma-tools-for-intellij/pull/317
33+
[#340]:https://github.com/domaframework/doma-tools-for-intellij/pull/340
34+
[#339]:https://github.com/domaframework/doma-tools-for-intellij/pull/339
35+
[#327]:https://github.com/domaframework/doma-tools-for-intellij/pull/327
36+
[#326]:https://github.com/domaframework/doma-tools-for-intellij/pull/326
37+
[#325]:https://github.com/domaframework/doma-tools-for-intellij/pull/325
38+
[#324]:https://github.com/domaframework/doma-tools-for-intellij/pull/324
39+
[#315]:https://github.com/domaframework/doma-tools-for-intellij/pull/315
40+
[#309]:https://github.com/domaframework/doma-tools-for-intellij/pull/309
41+
[#299]:https://github.com/domaframework/doma-tools-for-intellij/pull/299
42+
43+
544
## [1.1.1] - 2025-07-03
645

746
### Bug Fixes
@@ -403,3 +442,4 @@
403442
[#95]: https://github.com/domaframework/doma-tools-for-intellij/pull/95
404443
[#96]: https://github.com/domaframework/doma-tools-for-intellij/pull/96
405444
[#99]: https://github.com/domaframework/doma-tools-for-intellij/pull/99
445+
[1.2.0]: https://github.com/domaframework/doma-tools-for-intellij/compare/1.1.1...1.2.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 = 1.1.2-beta
4+
pluginVersion = 1.2.0
55

66
pluginSinceBuild=231
77

src/main/kotlin/org/domaframework/doma/intellij/common/util/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 = "1.1.2-beta"
22+
const val PLUGIN_VERSION = "1.2.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:-1.1.2-beta}" />
5+
<property name="LOG_FILE_VERSION" value="${org.domaframework.doma.intellij.plugin.version:-1.2.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:-1.1.2-beta}" />
5+
<property name="LOG_FILE_VERSION" value="${org.domaframework.doma.intellij.plugin.version:-1.2.0}" />
66

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

0 commit comments

Comments
 (0)