From 86169b4e7362b23fc48339f753d2d04c74a1b5af Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 23 Dec 2021 12:59:15 +0000 Subject: [PATCH] Prepare next development iteration after release 1.0.1 (#1158) --- README.md | 14 +++++++------- diktat-common/pom.xml | 2 +- diktat-gradle-plugin/gradle-plugin-marker/pom.xml | 2 +- diktat-gradle-plugin/pom.xml | 2 +- diktat-maven-plugin/pom.xml | 2 +- diktat-rules/pom.xml | 2 +- diktat-ruleset/pom.xml | 2 +- diktat-test-framework/pom.xml | 2 +- examples/gradle-groovy-dsl/build.gradle | 2 +- examples/gradle-kotlin-dsl/build.gradle.kts | 2 +- examples/maven/pom.xml | 4 ++-- info/buildSrc/gradle.properties | 2 +- pom.xml | 4 ++-- 13 files changed, 21 insertions(+), 21 deletions(-) diff --git a/README.md b/README.md index d642097f00..dc80ea0ca9 100644 --- a/README.md +++ b/README.md @@ -22,7 +22,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.0.0). 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.0.1). Thanks to the community for this support! ## See first @@ -55,11 +55,11 @@ Main features of diktat are the following: # another option is "brew install ktlint" ``` -2. Load diKTat manually: [here](https://github.com/cqfn/diKTat/releases/download/v1.0.0/diktat-1.0.0.jar) +2. Load diKTat manually: [here](https://github.com/cqfn/diKTat/releases/download/v1.0.1/diktat-1.0.1.jar) **OR** use curl: ```bash - $ curl -sSLO https://github.com/cqfn/diKTat/releases/download/v1.0.0/diktat-1.0.0.jar + $ curl -sSLO https://github.com/cqfn/diKTat/releases/download/v1.0.1/diktat-1.0.1.jar ``` 3. Finally, run KTlint (with diKTat injected) to check your `*.kt` files in `dir/your/dir`: @@ -112,7 +112,7 @@ This plugin is available since version 0.1.5. You can see how the plugin is conf Add this plugin to your `build.gradle.kts`: ```kotlin plugins { - id("org.cqfn.diktat.diktat-gradle-plugin") version "1.0.0" + id("org.cqfn.diktat.diktat-gradle-plugin") version "1.0.1" } ``` @@ -123,7 +123,7 @@ buildscript { mavenCentral() } dependencies { - classpath("org.cqfn.diktat:diktat-gradle-plugin:1.0.0") + classpath("org.cqfn.diktat:diktat-gradle-plugin:1.0.1") } } @@ -198,7 +198,7 @@ spotless { ```kotlin spotless { kotlin { - diktat("1.0.0").configFile("full/path/to/diktat-analysis.yml") + diktat("1.0.1").configFile("full/path/to/diktat-analysis.yml") } } ``` @@ -229,7 +229,7 @@ Diktat can be run via spotless-maven-plugin since version 2.8.0 ```xml - 1.0.0 + 1.0.1 full/path/to/diktat-analysis.yml ``` diff --git a/diktat-common/pom.xml b/diktat-common/pom.xml index 39935aab6f..bea3fbbc94 100644 --- a/diktat-common/pom.xml +++ b/diktat-common/pom.xml @@ -9,7 +9,7 @@ org.cqfn.diktat diktat-parent - 1.0.1-SNAPSHOT + 1.0.2-SNAPSHOT diff --git a/diktat-gradle-plugin/gradle-plugin-marker/pom.xml b/diktat-gradle-plugin/gradle-plugin-marker/pom.xml index 4844f4950e..2ef4e516db 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.0.1-SNAPSHOT + 1.0.2-SNAPSHOT 4.0.0 diff --git a/diktat-gradle-plugin/pom.xml b/diktat-gradle-plugin/pom.xml index 860cf89cca..bd5193b6b2 100644 --- a/diktat-gradle-plugin/pom.xml +++ b/diktat-gradle-plugin/pom.xml @@ -5,7 +5,7 @@ diktat-parent org.cqfn.diktat - 1.0.1-SNAPSHOT + 1.0.2-SNAPSHOT 4.0.0 diff --git a/diktat-maven-plugin/pom.xml b/diktat-maven-plugin/pom.xml index ff18ae8160..79f9cedfa7 100644 --- a/diktat-maven-plugin/pom.xml +++ b/diktat-maven-plugin/pom.xml @@ -5,7 +5,7 @@ diktat-parent org.cqfn.diktat - 1.0.1-SNAPSHOT + 1.0.2-SNAPSHOT 4.0.0 diff --git a/diktat-rules/pom.xml b/diktat-rules/pom.xml index 5ee7cc78c3..6688217557 100644 --- a/diktat-rules/pom.xml +++ b/diktat-rules/pom.xml @@ -9,7 +9,7 @@ org.cqfn.diktat diktat-parent - 1.0.1-SNAPSHOT + 1.0.2-SNAPSHOT diff --git a/diktat-ruleset/pom.xml b/diktat-ruleset/pom.xml index 5cbaba0ffb..cc8362c8bc 100644 --- a/diktat-ruleset/pom.xml +++ b/diktat-ruleset/pom.xml @@ -8,7 +8,7 @@ org.cqfn.diktat diktat-parent - 1.0.1-SNAPSHOT + 1.0.2-SNAPSHOT diff --git a/diktat-test-framework/pom.xml b/diktat-test-framework/pom.xml index e3cc4594d9..0144ec39de 100644 --- a/diktat-test-framework/pom.xml +++ b/diktat-test-framework/pom.xml @@ -9,7 +9,7 @@ org.cqfn.diktat diktat-parent - 1.0.1-SNAPSHOT + 1.0.2-SNAPSHOT diff --git a/examples/gradle-groovy-dsl/build.gradle b/examples/gradle-groovy-dsl/build.gradle index 0d3e025eb3..b34034f250 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.0.0" + id "org.cqfn.diktat.diktat-gradle-plugin" version "1.0.1" } repositories { diff --git a/examples/gradle-kotlin-dsl/build.gradle.kts b/examples/gradle-kotlin-dsl/build.gradle.kts index 86668e0c35..3be0a7c727 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.0.0" + id("org.cqfn.diktat.diktat-gradle-plugin") version "1.0.1" } repositories { diff --git a/examples/maven/pom.xml b/examples/maven/pom.xml index 8ea039c871..64563ca2d2 100644 --- a/examples/maven/pom.xml +++ b/examples/maven/pom.xml @@ -5,10 +5,10 @@ org.cqfn.diktat diktat-examples-maven pom - 1.0.0-SNAPSHOT + 1.0.1-SNAPSHOT - 1.0.0 + 1.0.1 diff --git a/info/buildSrc/gradle.properties b/info/buildSrc/gradle.properties index 6845d83499..1ab3495ad3 100644 --- a/info/buildSrc/gradle.properties +++ b/info/buildSrc/gradle.properties @@ -1 +1 @@ -version=1.0.1-SNAPSHOT +version=1.0.2-SNAPSHOT diff --git a/pom.xml b/pom.xml index f653ac95d0..c449e05469 100644 --- a/pom.xml +++ b/pom.xml @@ -5,7 +5,7 @@ org.cqfn.diktat diktat-parent - 1.0.1-SNAPSHOT + 1.0.2-SNAPSHOT pom diktat @@ -50,7 +50,7 @@ 31.0.1-jre 1.7.31 1.5.0 - 1.0.0 + 1.0.1 1.10.0 1.19.1 1.6.0