Skip to content

Commit

Permalink
Release v0.1.0-indev05
Browse files Browse the repository at this point in the history
  • Loading branch information
mfederczuk committed Jun 14, 2023
2 parents 3417e17 + 408fb67 commit cc1744f
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 10 deletions.
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,9 @@ All notable changes to this project will be documented in this file.
The format is based on [**Keep a Changelog v1.0.0**](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [**Semantic Versioning v2.0.0**](https://semver.org/spec/v2.0.0.html).

## Unreleased ##
## [v0.1.0-indev05] - 2023-06-14 ##

[v0.1.0-indev05]: <https://github.com/mfederczuk/ktlint-github-gradle-plugin/releases/tag/v0.1.0-indev05>

### Added ###

Expand Down
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@

# ktlint Gradle Plugin #

[version_shield]: https://img.shields.io/badge/version-0.1.0--indev04-informational.svg
[release_page]: https://github.com/mfederczuk/ktlint-gradle-plugin/releases/tag/v0.1.0-indev04 "Release v0.1.0-indev04"
[![version: 0.1.0-indev04][version_shield]][release_page]
[version_shield]: https://img.shields.io/badge/version-0.1.0--indev05-informational.svg
[release_page]: https://github.com/mfederczuk/ktlint-gradle-plugin/releases/tag/v0.1.0-indev05 "Release v0.1.0-indev05"
[![version: 0.1.0-indev05][version_shield]][release_page]
[![Changelog](https://img.shields.io/badge/-Changelog-informational.svg)](CHANGELOG.md "Changelog")

## About ##
Expand Down Expand Up @@ -61,7 +61,7 @@ The minimum supported ktlint version is `0.48.0`.
```kotlin
plugins {
id("io.github.mfederczuk.ktlint") version "0.1.0-indev04"
id("io.github.mfederczuk.ktlint") version "0.1.0-indev05"
}
repositories {
Expand Down Expand Up @@ -91,7 +91,7 @@ buildscript {
maven("https://plugins.gradle.org/m2/")
}
dependencies {
classpath("io.github.mfederczuk:ktlint-gradle-plugin:0.1.0-indev04")
classpath("io.github.mfederczuk:ktlint-gradle-plugin:0.1.0-indev05")
}
}

Expand Down Expand Up @@ -120,7 +120,7 @@ ktlint {

```groovy
plugins {
id 'io.github.mfederczuk.ktlint' version '0.1.0-indev04'
id 'io.github.mfederczuk.ktlint' version '0.1.0-indev05'
}
repositories {
Expand Down Expand Up @@ -150,7 +150,7 @@ buildscript {
maven { url 'https://plugins.gradle.org/m2/' }
}
dependencies {
classpath 'io.github.mfederczuk:ktlint-gradle-plugin:0.1.0-indev04'
classpath 'io.github.mfederczuk:ktlint-gradle-plugin:0.1.0-indev05'
}
}
Expand Down
2 changes: 1 addition & 1 deletion demo/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
plugins {
kotlin("jvm") version "1.8.20"
application
id("io.github.mfederczuk.ktlint") version "0.1.0-indev04"
id("io.github.mfederczuk.ktlint") version "0.1.0-indev05"
}

repositories {
Expand Down
2 changes: 1 addition & 1 deletion plugin/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ repositories {
}

group = "io.github.mfederczuk"
version = "0.1.0-indev04"
version = "0.1.0-indev05"

val javaCompatibilityVersion: JavaVersion = JavaVersion.VERSION_11

Expand Down

0 comments on commit cc1744f

Please sign in to comment.