Skip to content

Commit 136ed9b

Browse files
authored
Merge pull request #204 from domaframework/doc/changelog-update-0.8.1
Changelog update - `1.0.0`
2 parents 7cadded + 4eab6c8 commit 136ed9b

File tree

5 files changed

+54
-4
lines changed

5 files changed

+54
-4
lines changed

CHANGELOG.md

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

33
## [Unreleased]
44

5+
## [1.0.0] - 2025-06-09
6+
7+
### Bug Fixes
8+
9+
- No error when static field-access element shares the same name as a parameter ([#243])
10+
- No error when a field-access element shares the same name as a parameter ([#241])
11+
- Test data check skipped for directives at end of file ([#214])
12+
- Add fallback for parent class name retrieval in validation property result ([#216])
13+
- Code completion fails after existing values in method arguments ([#215])
14+
- Instance member suggestions missing inside static property call arguments ([#213])
15+
- Cannot resolve references from within argument-parameter elements ([#207])
16+
- Update error messages ([#205])
17+
- Reflect Custom Error Levels in DAO Method Inspection ([#232])
18+
- Fix FieldAccess code completion ([#229])
19+
- Fix code completion for static field access ([#226])
20+
21+
### Maintenance
22+
23+
- Refactor: Split inspection logic ([#230])
24+
- Add pull request trigger to release drafter workflow ([#168])
25+
26+
### Dependency Updates
27+
28+
- Update dependency gradle to v8.14.2 ([#242])
29+
- Update plugin verifier version to 1.386 ([#209])
30+
- Update pluginVerifier version in dependencies and build configuration ([#218])
31+
- Update plugin spotless to v7.0.4 ([#203])
32+
- Update dependency gradle to v8.14.1 ([#188])
33+
34+
[#243]:https://github.com/domaframework/doma-tools-for-intellij/pull/243
35+
[#242]:https://github.com/domaframework/doma-tools-for-intellij/pull/242
36+
[#241]:https://github.com/domaframework/doma-tools-for-intellij/pull/241
37+
[#214]:https://github.com/domaframework/doma-tools-for-intellij/pull/214
38+
[#216]:https://github.com/domaframework/doma-tools-for-intellij/pull/216
39+
[#215]:https://github.com/domaframework/doma-tools-for-intellij/pull/215
40+
[#213]:https://github.com/domaframework/doma-tools-for-intellij/pull/213
41+
[#207]:https://github.com/domaframework/doma-tools-for-intellij/pull/207
42+
[#205]:https://github.com/domaframework/doma-tools-for-intellij/pull/205
43+
[#232]:https://github.com/domaframework/doma-tools-for-intellij/pull/232
44+
[#229]:https://github.com/domaframework/doma-tools-for-intellij/pull/229
45+
[#226]:https://github.com/domaframework/doma-tools-for-intellij/pull/226
46+
[#230]:https://github.com/domaframework/doma-tools-for-intellij/pull/230
47+
[#168]:https://github.com/domaframework/doma-tools-for-intellij/pull/168
48+
[#209]:https://github.com/domaframework/doma-tools-for-intellij/pull/209
49+
[#218]:https://github.com/domaframework/doma-tools-for-intellij/pull/218
50+
[#203]:https://github.com/domaframework/doma-tools-for-intellij/pull/203
51+
[#188]:https://github.com/domaframework/doma-tools-for-intellij/pull/188
52+
53+
554
## [0.8.0] - 2025-05-27
655

756
### New Features
@@ -308,3 +357,4 @@
308357
[#95]: https://github.com/domaframework/doma-tools-for-intellij/pull/95
309358
[#96]: https://github.com/domaframework/doma-tools-for-intellij/pull/96
310359
[#99]: https://github.com/domaframework/doma-tools-for-intellij/pull/99
360+
[1.0.0]: https://github.com/domaframework/doma-tools-for-intellij/compare/0.8.0...1.0.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.8.1-beta
4+
pluginVersion = 1.0.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 = "0.8.1-beta"
22+
const val PLUGIN_VERSION = "1.0.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.8.1-beta}" />
5+
<property name="LOG_FILE_VERSION" value="${org.domaframework.doma.intellij.plugin.version:-1.0.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.8.1-beta}" />
5+
<property name="LOG_FILE_VERSION" value="${org.domaframework.doma.intellij.plugin.version:-1.0.0}" />
66

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

0 commit comments

Comments
 (0)