Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,17 @@

## [Unreleased]

## [2.1.2] - 2025-08-22

### Bug Fixes

- Fix Last Column Non Line Break ([#417])
- Fix: SQL Formatter ([#411])

[#417]:https://github.com/domaframework/doma-tools-for-intellij/pull/417
[#411]:https://github.com/domaframework/doma-tools-for-intellij/pull/411


## [2.1.2] - 2025-08-22

### Bug Fixes
Expand Down Expand Up @@ -494,3 +505,4 @@
[#103]: https://github.com/domaframework/doma-tools-for-intellij/pull/103
[#102]: https://github.com/domaframework/doma-tools-for-intellij/pull/102
[#10]: https://github.com/domaframework/doma-tools-for-intellij/pull/10
[2.1.2]: https://github.com/domaframework/doma-tools-for-intellij/compare/2.1.1...2.1.2
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
pluginGroup = org.domaframework.doma.intellij
pluginName = Doma Tools for IntelliJ
pluginRepositoryUrl = https://github.com/domaframework/doma-tools-for-intellij
pluginVersion = 2.1.2-beta
pluginVersion = 2.1.2

pluginSinceBuild=231

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ import com.intellij.ide.plugins.PluginManagerCore
import com.intellij.openapi.extensions.PluginId

const val PLUGIN_ID = "org.domaframework.doma.intellij"
const val PLUGIN_VERSION = "2.1.2-beta"
const val PLUGIN_VERSION = "2.1.2"

open class PluginUtil {
companion object {
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/logback-test.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<configuration scan="true">
<property resource="logback.properties" />
<property name="LOG_FILE_BASE_DIR" value="${org.domaframework.doma.intellij.log.path:-/doma-tools}" />
<property name="LOG_FILE_VERSION" value="${org.domaframework.doma.intellij.plugin.version:-2.1.2-beta}" />
<property name="LOG_FILE_VERSION" value="${org.domaframework.doma.intellij.plugin.version:-2.1.2}" />

<appender name="STDOUT" class="ch.qos.logback.core.ConsoleAppender">
<encoder>
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/logback.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<configuration scan="true">
<property resource="logback.properties" />
<property name="LOG_FILE_BASE_DIR" value="${org.domaframework.doma.intellij.log.path:-/doma-tools}" />
<property name="LOG_FILE_VERSION" value="${org.domaframework.doma.intellij.plugin.version:-2.1.2-beta}" />
<property name="LOG_FILE_VERSION" value="${org.domaframework.doma.intellij.plugin.version:-2.1.2}" />

<appender name="STDOUT" class="ch.qos.logback.core.ConsoleAppender">
<encoder>
Expand Down
Loading