Skip to content

Commit db158b0

Browse files
committed
Changelog update - 2.2.1
1 parent 4b2bee9 commit db158b0

File tree

5 files changed

+23
-4
lines changed

5 files changed

+23
-4
lines changed

CHANGELOG.md

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

33
## [Unreleased]
44

5+
## [2.2.1] - 2025-09-03
6+
7+
### Bug Fixes
8+
9+
- Fix: Unnecessary Space in Parser-Level Comments ([#440])
10+
- Improve SQL CASE Statement Formatting ([#441])
11+
- Add Formatting Support for Table Modification Queries ([#435])
12+
13+
### Dependency Updates
14+
15+
- Update dependency com.fasterxml.jackson.module:jackson-module-kotlin to v2.20.0 ([#432])
16+
17+
[#440]:https://github.com/domaframework/doma-tools-for-intellij/pull/440
18+
[#441]:https://github.com/domaframework/doma-tools-for-intellij/pull/441
19+
[#435]:https://github.com/domaframework/doma-tools-for-intellij/pull/435
20+
[#432]:https://github.com/domaframework/doma-tools-for-intellij/pull/432
21+
22+
523
## [2.2.0] - 2025-08-29
624

725
### New Features
@@ -519,3 +537,4 @@
519537
[#103]: https://github.com/domaframework/doma-tools-for-intellij/pull/103
520538
[#102]: https://github.com/domaframework/doma-tools-for-intellij/pull/102
521539
[#10]: https://github.com/domaframework/doma-tools-for-intellij/pull/10
540+
[2.2.1]: https://github.com/domaframework/doma-tools-for-intellij/compare/2.2.0...2.2.1

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 = 2.2.1-beta
4+
pluginVersion = 2.2.1
55

66
pluginSinceBuild=233
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 = "2.2.1-beta"
22+
const val PLUGIN_VERSION = "2.2.1"
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:-2.2.1-beta}" />
5+
<property name="LOG_FILE_VERSION" value="${org.domaframework.doma.intellij.plugin.version:-2.2.1}" />
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:-2.2.1-beta}" />
5+
<property name="LOG_FILE_VERSION" value="${org.domaframework.doma.intellij.plugin.version:-2.2.1}" />
66

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

0 commit comments

Comments
 (0)