From d0e20daf6f38cf763469810c368e47906228c377 Mon Sep 17 00:00:00 2001 From: Jakub Chrzanowski Date: Mon, 23 May 2022 13:08:09 +0200 Subject: [PATCH] 4.4.1 --- CHANGELOG.md | 9 +++++---- build.gradle.kts | 8 +------- gradle.properties | 2 +- 3 files changed, 7 insertions(+), 12 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 165f091a..71aaa1f2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,11 +2,12 @@ Changelog ---------- ## [Unreleased] +- Support for IntelliJ-based IDEs in 2022.2 version ## [v4.4.0] (https://github.com/JetBrains/idea-gitignore/tree/v4.4.0) (2022-03-30) -- IDEA-284447 Titled Borders aren't being themed correctly -- Support for IntelliJ-based IDEs in 2022.1 version -- Fixed `ExpiringMap#get` flow +- IDEA-284447 Titled Borders aren't being themed correctly +- Support for IntelliJ-based IDEs in 2022.1 version +- Fixed `ExpiringMap#get` flow - Remove `OK` action from the `IgnoredEditingNotificationProvider` ## [v4.3.0] (https://github.com/JetBrains/idea-gitignore/tree/v4.3.0) (2021-10-13) @@ -603,4 +604,4 @@ The plugin still provides other features for .gitignore and .hgignore, and the f ## v0.1 - Initial version - `.gitignore` file support -- Basic syntax highlighting \ No newline at end of file +- Basic syntax highlighting diff --git a/build.gradle.kts b/build.gradle.kts index 89d3bbe3..17c11e24 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -7,7 +7,7 @@ fun properties(key: String) = project.findProperty(key).toString() plugins { id("java") id("org.jetbrains.kotlin.jvm") version "1.6.21" - id("org.jetbrains.intellij") version "1.5.3" + id("org.jetbrains.intellij") version "1.6.0" id("org.jetbrains.changelog") version "1.3.1" id("org.jetbrains.grammarkit") version "2021.2.2" id("org.jetbrains.qodana") version "0.1.13" @@ -150,10 +150,4 @@ tasks { jvmArgs = listOf("-Xmx1024m", "-XX:+UnlockDiagnosticVMOptions") systemProperty("ide.plugins.snapshot.on.unload.fail", "true") } - - val test by getting(Test::class) { - isScanForTestClasses = false - // Only run tests from classes that end with "Test" - include("**/*Test.class") - } } diff --git a/gradle.properties b/gradle.properties index 5410c4c4..259f2b8d 100644 --- a/gradle.properties +++ b/gradle.properties @@ -4,7 +4,7 @@ pluginGroup = mobi.hsz.idea pluginName = .ignore # SemVer format -> https://semver.org -pluginVersion = 4.4.0 +pluginVersion = 4.4.1 # See https://plugins.jetbrains.com/docs/intellij/build-number-ranges.html # for insight into build numbers and IntelliJ Platform versions.