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
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ jobs:

# Build plugin
- name: Build plugin
run: ./gradlew buildPlugin -PpluginVersion=0.3.0-${{ github.run_number }}
run: ./gradlew buildPlugin -PpluginVersion=0.3.1-${{ github.run_number }}

# Prepare plugin archive content for creating artifact
- name: Prepare Plugin Artifact
Expand Down
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 = 0.3.0
pluginVersion = 0.3.1

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 = "0.3.0"
const val PLUGIN_VERSION = "0.3.1"

open class PluginUtil {
companion object {
Expand Down
6 changes: 3 additions & 3 deletions 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:-0.3.0}" />
<property name="LOG_FILE_VERSION" value="${org.domaframework.doma.intellij.plugin.version:-0.3.1}" />

<appender name="STDOUT" class="ch.qos.logback.core.ConsoleAppender">
<encoder>
Expand All @@ -14,9 +14,9 @@
</appender>

<appender name="DOMATOOLS" class="ch.qos.logback.core.rolling.RollingFileAppender">
<file>${LOG_FILE_BASE_DIR:-/domatoolslog}/${LOG_FILE_BASENAME:-doma-tools}-${LOG_FILE_VERSION:-0.3.0}.log</file>
<file>${LOG_FILE_BASE_DIR:-/domatoolslog}/${LOG_FILE_BASENAME:-doma-tools}-${LOG_FILE_VERSION:-0.3.1}.log</file>
<rollingPolicy class="ch.qos.logback.core.rolling.TimeBasedRollingPolicy">
<fileNamePattern>${LOG_FILE_BASENAME:-doma-tools}-${LOG_FILE_VERSION:-0.3.0}-%d{yyyy-MM-dd}.log</fileNamePattern>
<fileNamePattern>${LOG_FILE_BASENAME:-doma-tools}-${LOG_FILE_VERSION:-0.3.1}-%d{yyyy-MM-dd}.log</fileNamePattern>
<maxHistory>30</maxHistory>
</rollingPolicy>
<encoder>
Expand Down
6 changes: 3 additions & 3 deletions 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:-0.3.0}" />
<property name="LOG_FILE_VERSION" value="${org.domaframework.doma.intellij.plugin.version:-0.3.1}" />

<appender name="STDOUT" class="ch.qos.logback.core.ConsoleAppender">
<encoder>
Expand All @@ -14,9 +14,9 @@
</appender>

<appender name="DOMATOOLS" class="ch.qos.logback.core.rolling.RollingFileAppender">
<file>${LOG_FILE_BASE_DIR:-/domatoolslog}/${LOG_FILE_BASENAME:-doma-tools}-${LOG_FILE_VERSION:-0.3.0}.log</file>
<file>${LOG_FILE_BASE_DIR:-/domatoolslog}/${LOG_FILE_BASENAME:-doma-tools}-${LOG_FILE_VERSION:-0.3.1}.log</file>
<rollingPolicy class="ch.qos.logback.core.rolling.TimeBasedRollingPolicy">
<fileNamePattern>${LOG_FILE_BASENAME:-doma-tools}-${LOG_FILE_VERSION:-0.3.0}-%d{yyyy-MM-dd}.log</fileNamePattern>
<fileNamePattern>${LOG_FILE_BASENAME:-doma-tools}-${LOG_FILE_VERSION:-0.3.1}-%d{yyyy-MM-dd}.log</fileNamePattern>
<maxHistory>30</maxHistory>
</rollingPolicy>
<encoder>
Expand Down
Loading