diff --git a/README.md b/README.md index b8c13ea89b..a82f95e66b 100644 --- a/README.md +++ b/README.md @@ -20,7 +20,7 @@ DiKTat is a strict [coding standard ](info/guide/diktat-coding-convention.md) fo as AST visitors on the top of [KTlint](https://ktlint.github.io/). It can be used for detecting and autofixing code smells in CI/CD process. The full list of available supported rules and inspections can be found [here](info/available-rules.md). -Now diKTat was already added to the lists of [static analysis tools](https://github.com/analysis-tools-dev/static-analysis), to [kotlin-awesome](https://github.com/KotlinBy/awesome-kotlin) and to [kompar](https://catalog.kompar.tools/Analyzer/diKTat/1.2.2). Thanks to the community for this support! +Now diKTat was already added to the lists of [static analysis tools](https://github.com/analysis-tools-dev/static-analysis), to [kotlin-awesome](https://github.com/KotlinBy/awesome-kotlin) and to [kompar](https://catalog.kompar.tools/Analyzer/diKTat/1.2.3). Thanks to the community for this support! ## See first @@ -56,11 +56,11 @@ Main features of diktat are the following: curl -sSLO https://github.com/pinterest/ktlint/releases/download/0.46.1/ktlint && chmod a+x ktlint ``` -1. Load diKTat manually: [here](https://github.com/saveourtool/diKTat/releases/download/v1.2.2/diktat-1.2.2.jar) +1. Load diKTat manually: [here](https://github.com/saveourtool/diKTat/releases/download/v1.2.3/diktat-1.2.3.jar) **OR** use `curl`: ```console - $ curl -sSLO https://github.com/saveourtool/diKTat/releases/download/v1.2.2/diktat-1.2.2.jar + $ curl -sSLO https://github.com/saveourtool/diKTat/releases/download/v1.2.3/diktat-1.2.3.jar ``` ### Run diKTat @@ -182,7 +182,7 @@ This plugin is available since version 0.1.5. You can see how the plugin is conf ```kotlin plugins { - id("org.cqfn.diktat.diktat-gradle-plugin") version "1.2.2" + id("org.cqfn.diktat.diktat-gradle-plugin") version "1.2.3" } ``` @@ -193,7 +193,7 @@ buildscript { mavenCentral() } dependencies { - classpath("org.cqfn.diktat:diktat-gradle-plugin:1.2.2") + classpath("org.cqfn.diktat:diktat-gradle-plugin:1.2.3") } } @@ -215,9 +215,9 @@ Also in `diktat` extension you can configure different reporters and their outpu If `output` is set, it should be a file path. If not set, results will be printed to stdout. ```kotlin diktat { - // since 1.2.2 to keep in line with maven properties + // since 1.2.3 to keep in line with maven properties reporter = "json" // "html", "json", "plain" (default), "sarif" - // before 1.2.2 + // before 1.2.3 // reporterType = "json" // "html", "json", "plain" (default), "sarif" output = "someFile.json" @@ -259,7 +259,7 @@ spotless { ```kotlin spotless { kotlin { - diktat("1.2.2").configFile("full/path/to/diktat-analysis.yml") + diktat("1.2.3").configFile("full/path/to/diktat-analysis.yml") } } ``` @@ -290,7 +290,7 @@ Diktat can be run via spotless-maven-plugin since version 2.8.0 ```xml - 1.2.2 + 1.2.3 full/path/to/diktat-analysis.yml ``` diff --git a/diktat-common/pom.xml b/diktat-common/pom.xml index f55e8cb1f4..92cab72d85 100644 --- a/diktat-common/pom.xml +++ b/diktat-common/pom.xml @@ -9,7 +9,7 @@ org.cqfn.diktat diktat-parent - 1.2.3-SNAPSHOT + 1.2.4-SNAPSHOT diff --git a/diktat-gradle-plugin/gradle-plugin-marker/pom.xml b/diktat-gradle-plugin/gradle-plugin-marker/pom.xml index fbfd3f6925..632bd8d144 100644 --- a/diktat-gradle-plugin/gradle-plugin-marker/pom.xml +++ b/diktat-gradle-plugin/gradle-plugin-marker/pom.xml @@ -4,7 +4,7 @@ diktat-gradle-plugin org.cqfn.diktat - 1.2.3-SNAPSHOT + 1.2.4-SNAPSHOT 4.0.0 diff --git a/diktat-gradle-plugin/pom.xml b/diktat-gradle-plugin/pom.xml index bc393c0f04..54da8f318b 100644 --- a/diktat-gradle-plugin/pom.xml +++ b/diktat-gradle-plugin/pom.xml @@ -5,7 +5,7 @@ diktat-parent org.cqfn.diktat - 1.2.3-SNAPSHOT + 1.2.4-SNAPSHOT 4.0.0 diff --git a/diktat-maven-plugin/pom.xml b/diktat-maven-plugin/pom.xml index 34d1c8256e..173e104e65 100644 --- a/diktat-maven-plugin/pom.xml +++ b/diktat-maven-plugin/pom.xml @@ -5,7 +5,7 @@ diktat-parent org.cqfn.diktat - 1.2.3-SNAPSHOT + 1.2.4-SNAPSHOT 4.0.0 diff --git a/diktat-rules/pom.xml b/diktat-rules/pom.xml index 2cab35c190..4e115ddef0 100644 --- a/diktat-rules/pom.xml +++ b/diktat-rules/pom.xml @@ -9,7 +9,7 @@ org.cqfn.diktat diktat-parent - 1.2.3-SNAPSHOT + 1.2.4-SNAPSHOT diff --git a/diktat-ruleset/pom.xml b/diktat-ruleset/pom.xml index f1d6898ddd..a7275178e1 100644 --- a/diktat-ruleset/pom.xml +++ b/diktat-ruleset/pom.xml @@ -8,7 +8,7 @@ org.cqfn.diktat diktat-parent - 1.2.3-SNAPSHOT + 1.2.4-SNAPSHOT diff --git a/diktat-test-framework/pom.xml b/diktat-test-framework/pom.xml index c5dae53126..1fbec323ee 100644 --- a/diktat-test-framework/pom.xml +++ b/diktat-test-framework/pom.xml @@ -9,7 +9,7 @@ org.cqfn.diktat diktat-parent - 1.2.3-SNAPSHOT + 1.2.4-SNAPSHOT diff --git a/examples/gradle-groovy-dsl/build.gradle b/examples/gradle-groovy-dsl/build.gradle index 597580236b..f2a17767bd 100644 --- a/examples/gradle-groovy-dsl/build.gradle +++ b/examples/gradle-groovy-dsl/build.gradle @@ -1,5 +1,5 @@ plugins { - id "org.cqfn.diktat.diktat-gradle-plugin" version "1.2.2" + id "org.cqfn.diktat.diktat-gradle-plugin" version "1.2.3" } repositories { diff --git a/examples/gradle-kotlin-dsl/build.gradle.kts b/examples/gradle-kotlin-dsl/build.gradle.kts index 539fbd6fb0..f70b46d29c 100644 --- a/examples/gradle-kotlin-dsl/build.gradle.kts +++ b/examples/gradle-kotlin-dsl/build.gradle.kts @@ -1,5 +1,5 @@ plugins { - id("org.cqfn.diktat.diktat-gradle-plugin") version "1.2.2" + id("org.cqfn.diktat.diktat-gradle-plugin") version "1.2.3" } repositories { diff --git a/examples/maven/pom.xml b/examples/maven/pom.xml index d427906dad..678093f8bc 100644 --- a/examples/maven/pom.xml +++ b/examples/maven/pom.xml @@ -5,10 +5,10 @@ org.cqfn.diktat diktat-examples-maven pom - 1.2.3-SNAPSHOT + 1.2.4-SNAPSHOT - 1.2.2 + 1.2.3