Skip to content

Commit b4f63d5

Browse files
committed
Changelog update - 1.1.0
1 parent 81d9499 commit b4f63d5

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+
## [1.1.0] - 2025-06-25
6+
7+
### New Features
8+
9+
- DAO Method Parameter Validation ([#257])
10+
- Check DAO Method Return Type ([#247])
11+
- Factory DAO Method Check ([#272])
12+
- Implement Return Type Checking for Select and Function Annotations ([#266])
13+
14+
### Bug Fixes
15+
16+
- Expand directive incorrectly treated as bind variable directive ([#255])
17+
- Enhance the usage checks of DAO method parameters for subtypes. ([#273])
18+
- Fix Return Type Check ([#270])
19+
- Resource for parameter error messages of Processor methods ([#269])
20+
21+
### Maintenance
22+
23+
- Update release drafter conditions to exclude specific changelog updates ([#275])
24+
- Refactoring dao method inspections ([#274])
25+
26+
### Dependency Updates
27+
28+
- Update dependency org.jetbrains.kotlin.jvm to v2.2.0 ([#271])
29+
- Update dependency org.jetbrains.intellij.plugins:verifier-cli to v1.388 ([#258])
30+
- Update dependency com.fasterxml.jackson.module:jackson-module-kotlin to v2.19.1 ([#253])
31+
32+
[#257]:https://github.com/domaframework/doma-tools-for-intellij/pull/257
33+
[#247]:https://github.com/domaframework/doma-tools-for-intellij/pull/247
34+
[#272]:https://github.com/domaframework/doma-tools-for-intellij/pull/272
35+
[#266]:https://github.com/domaframework/doma-tools-for-intellij/pull/266
36+
[#255]:https://github.com/domaframework/doma-tools-for-intellij/pull/255
37+
[#273]:https://github.com/domaframework/doma-tools-for-intellij/pull/273
38+
[#270]:https://github.com/domaframework/doma-tools-for-intellij/pull/270
39+
[#269]:https://github.com/domaframework/doma-tools-for-intellij/pull/269
40+
[#275]:https://github.com/domaframework/doma-tools-for-intellij/pull/275
41+
[#274]:https://github.com/domaframework/doma-tools-for-intellij/pull/274
42+
[#271]:https://github.com/domaframework/doma-tools-for-intellij/pull/271
43+
[#258]:https://github.com/domaframework/doma-tools-for-intellij/pull/258
44+
[#253]:https://github.com/domaframework/doma-tools-for-intellij/pull/253
45+
46+
547
## [1.0.0] - 2025-06-09
648

749
### Bug Fixes
@@ -356,3 +398,4 @@
356398
[#95]: https://github.com/domaframework/doma-tools-for-intellij/pull/95
357399
[#96]: https://github.com/domaframework/doma-tools-for-intellij/pull/96
358400
[#99]: https://github.com/domaframework/doma-tools-for-intellij/pull/99
401+
[1.1.0]: https://github.com/domaframework/doma-tools-for-intellij/compare/1.0.0...1.1.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.0-beta
4+
pluginVersion = 1.1.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.0-beta"
22+
const val PLUGIN_VERSION = "1.1.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.0-beta}" />
5+
<property name="LOG_FILE_VERSION" value="${org.domaframework.doma.intellij.plugin.version:-1.1.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.0-beta}" />
5+
<property name="LOG_FILE_VERSION" value="${org.domaframework.doma.intellij.plugin.version:-1.1.0}" />
66

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

0 commit comments

Comments
 (0)