Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update versions in pom.xml and documentation after 0.1.0 release #280

Merged
merged 3 commits into from
Sep 14, 2020
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
9 changes: 4 additions & 5 deletions .github/workflows/diktat.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,10 @@
name: Run diKTat from release version

on:
# fixme: temporary disable this job until the first release lands in maven central
# push:
# branches: [ master ]
# pull_request:
# branches: [ master ]
push:
branches: [ master ]
pull_request:
branches: [ master ]

jobs:
diktat_check:
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,11 +31,11 @@ The full list of available supported rules and inspections is [here](info/availa
# another option is "brew install ktlint"
```

2. Load diKTat manually: [here](https://github.com/cqfn/diKTat/releases/download/v0.0.4/diktat.jar)
2. Load diKTat manually: [here](https://github.com/cqfn/diKTat/releases/download/v0.1.0/diktat.jar)

**OR** use curl:
```bash
$ curl -sSLO https://github.com/cqfn/diKTat/releases/download/v0.0.4/diktat.jar
$ curl -sSLO https://github.com/cqfn/diKTat/releases/download/v0.1.0/diktat.jar
```

3. Finally, run KTlint (with diKTat injected) to check your `*.kt` files in `dir/your/dir`:
Expand Down Expand Up @@ -95,7 +95,7 @@ Add this plugin to your pom.xml:
<dependency>
<groupId>org.cqfn.diktat</groupId>
<artifactId>diktat-rules</artifactId>
<version>0.0.4</version> <!-- replace it with diktat latest version -->
<version>0.1.0</version> <!-- replace it with diktat latest version -->
<exclusions>
<exclusion>
<groupId>org.slf4j</groupId>
Expand Down Expand Up @@ -134,7 +134,7 @@ dependencies {
}

// diktat ruleset
ktlint("org.cqfn.diktat:diktat-rules:0.0.4") {
ktlint("org.cqfn.diktat:diktat-rules:0.1.0") {
exclude("org.slf4j", "slf4j-log4j12")
}
}
Expand Down
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ dependencies {
}

// diktat ruleset
ktlint("org.cqfn.diktat:diktat-rules:0.0.4") {
ktlint("org.cqfn.diktat:diktat-rules:0.1.0") {
exclude("org.slf4j", "slf4j-log4j12")
}
}
Expand Down
2 changes: 1 addition & 1 deletion diktat-common/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<parent>
<groupId>org.cqfn.diktat</groupId>
<artifactId>diktat-parent</artifactId>
<version>0.0.5-SNAPSHOT</version>
<version>0.1.1-SNAPSHOT</version>
</parent>

<dependencies>
Expand Down
2 changes: 1 addition & 1 deletion diktat-rules/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<parent>
<groupId>org.cqfn.diktat</groupId>
<artifactId>diktat-parent</artifactId>
<version>0.0.5-SNAPSHOT</version>
<version>0.1.1-SNAPSHOT</version>

</parent>
<properties>
Expand Down
2 changes: 1 addition & 1 deletion diktat-ruleset/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<parent>
<groupId>org.cqfn.diktat</groupId>
<artifactId>diktat-parent</artifactId>
<version>0.0.5-SNAPSHOT</version>
<version>0.1.1-SNAPSHOT</version>
</parent>

<dependencies>
Expand Down
2 changes: 1 addition & 1 deletion diktat-test-framework/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<parent>
<groupId>org.cqfn.diktat</groupId>
<artifactId>diktat-parent</artifactId>
<version>0.0.5-SNAPSHOT</version>
<version>0.1.1-SNAPSHOT</version>
</parent>

<dependencies>
Expand Down
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

<groupId>org.cqfn.diktat</groupId>
<artifactId>diktat-parent</artifactId>
<version>0.0.5-SNAPSHOT</version>
<version>0.1.1-SNAPSHOT</version>
<packaging>pom</packaging>

<name>diktat</name>
Expand Down Expand Up @@ -49,7 +49,7 @@
<jackson.version>2.11.2</jackson.version>
<slf4j.version>1.7.30</slf4j.version>
<commons-cli.version>1.4</commons-cli.version>
<diktat-check.version>0.0.4</diktat-check.version>
<diktat-check.version>0.1.0</diktat-check.version>
<kotlinpoet.version>1.6.0</kotlinpoet.version>
<dokka.version>1.4.0</dokka.version>
</properties>
Expand Down