Skip to content

Commit

Permalink
Prepare for release v0.1.0-indev02
Browse files Browse the repository at this point in the history
  • Loading branch information
mfederczuk committed Apr 19, 2023
1 parent 45bf81d commit dd80b9e
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 9 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,14 @@ 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).

## [v0.1.0-indev02] - 2023-04-19 ##

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

### Fixed ###

* Fixed the `installKtlintGitPreCommitHook` task ([`4db95eb`](https://github.com/mfederczuk/ktlint-gradle-plugin/commit/4db95ebbb7ab24837b4a82b8a0cd4374fd0ce98d))

## [v0.1.0-indev01] - 2023-04-14 ##

[v0.1.0-indev01]: <https://github.com/mfederczuk/ktlint-github-gradle-plugin/releases/tag/v0.1.0-indev01>
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--indev01-informational.svg
[release_page]: https://github.com/mfederczuk/ktlint-gradle-plugin/releases/tag/v0.1.0-indev01 "Release v0.1.0-indev01"
[![version: 0.1.0-indev01][version_shield]][release_page]
[version_shield]: https://img.shields.io/badge/version-0.1.0--indev02-informational.svg
[release_page]: https://github.com/mfederczuk/ktlint-gradle-plugin/releases/tag/v0.1.0-indev02 "Release v0.1.0-indev02"
[![version: 0.1.0-indev02][version_shield]][release_page]
[![Changelog](https://img.shields.io/badge/-Changelog-informational.svg)](CHANGELOG.md "Changelog")

## About ##
Expand Down Expand Up @@ -60,7 +60,7 @@ The main advantages/fixes of this plugin's hook are:
```kotlin
plugins {
id("io.github.mfederczuk.ktlint") version "0.1.0-indev01"
id("io.github.mfederczuk.ktlint") version "0.1.0-indev02"
}
repositories {
Expand All @@ -85,7 +85,7 @@ buildscript {
maven("https://plugins.gradle.org/m2/")
}
dependencies {
classpath("io.github.mfederczuk:ktlint-gradle-plugin:0.1.0-indev01")
classpath("io.github.mfederczuk:ktlint-gradle-plugin:0.1.0-indev02")
}
}

Expand All @@ -109,7 +109,7 @@ ktlint {

```groovy
plugins {
id 'io.github.mfederczuk.ktlint' version '0.1.0-indev01'
id 'io.github.mfederczuk.ktlint' version '0.1.0-indev02'
}
repositories {
Expand All @@ -134,7 +134,7 @@ buildscript {
maven { url 'https://plugins.gradle.org/m2/' }
}
dependencies {
classpath 'io.github.mfederczuk:ktlint-gradle-plugin:0.1.0-indev01'
classpath 'io.github.mfederczuk:ktlint-gradle-plugin:0.1.0-indev02'
}
}
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-indev01"
id("io.github.mfederczuk.ktlint") version "0.1.0-indev02"
}

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-indev01"
version = "0.1.0-indev02"

kotlin {
explicitApi()
Expand Down

0 comments on commit dd80b9e

Please sign in to comment.