Skip to content

Commit b1c9b69

Browse files
authored
Merge pull request #287 from domaframework/doc/changelog-update-1.1.1
Changelog update - `1.1.1`
2 parents 4b8cc3d + 455c383 commit b1c9b69

File tree

5 files changed

+16
-4
lines changed

5 files changed

+16
-4
lines changed

CHANGELOG.md

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

33
## [Unreleased]
44

5+
## [1.1.1] - 2025-07-03
6+
7+
### Bug Fixes
8+
9+
- Enable SQL File Generation in Multi-Module Projects ([#292])
10+
- Ensure Correct SQL File Path Generation When Package Name Matches Source Directory ([#286])
11+
12+
[#292]:https://github.com/domaframework/doma-tools-for-intellij/pull/292
13+
[#286]:https://github.com/domaframework/doma-tools-for-intellij/pull/286
14+
15+
516
## [1.1.0] - 2025-06-25
617

718
### New Features
@@ -393,3 +404,4 @@
393404
[#95]: https://github.com/domaframework/doma-tools-for-intellij/pull/95
394405
[#96]: https://github.com/domaframework/doma-tools-for-intellij/pull/96
395406
[#99]: https://github.com/domaframework/doma-tools-for-intellij/pull/99
407+
[1.1.1]: https://github.com/domaframework/doma-tools-for-intellij/compare/1.1.0...1.1.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 = 1.1.1-beta
4+
pluginVersion = 1.1.1
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.1-beta"
22+
const val PLUGIN_VERSION = "1.1.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:-1.1.1-beta}" />
5+
<property name="LOG_FILE_VERSION" value="${org.domaframework.doma.intellij.plugin.version:-1.1.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:-1.1.1-beta}" />
5+
<property name="LOG_FILE_VERSION" value="${org.domaframework.doma.intellij.plugin.version:-1.1.1}" />
66

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

0 commit comments

Comments
 (0)