From 746b2c8ed59532fba31d4963aa07cb07a4ed7670 Mon Sep 17 00:00:00 2001 From: Matthais Held Date: Thu, 26 Nov 2020 13:13:17 +0100 Subject: [PATCH] remove debug statement and bump version --- CHANGELOG.md | 4 ++++ README.md | 4 ++-- build.gradle.kts | 2 +- src/main/kotlin/io/wusa/GitService.kt | 1 - 4 files changed, 7 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3e8d745..4bab9be 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [2.3.4] +### Fixed +- Remove debug statements. + ## [2.3.3] ### Fixed - Fix dirty working tree in the conventional commits incrementer. diff --git a/README.md b/README.md index 5edcada..d53d6dc 100644 --- a/README.md +++ b/README.md @@ -12,7 +12,7 @@ Gradle 2.1 and higher ``` plugins { - id("io.wusa.semver-git-plugin").version("2.3.3") + id("io.wusa.semver-git-plugin").version("2.3.4") } ``` @@ -25,7 +25,7 @@ buildscript { } } dependencies { - classpath 'io.wusa:semver-git-plugin:2.3.3' + classpath 'io.wusa:semver-git-plugin:2.3.4' } } diff --git a/build.gradle.kts b/build.gradle.kts index 84bfb15..8ef0c81 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -7,7 +7,7 @@ plugins { } group = "io.wusa" -version = "2.3.3" +version = "2.3.4" dependencies { implementation(kotlin("stdlib-jdk8")) diff --git a/src/main/kotlin/io/wusa/GitService.kt b/src/main/kotlin/io/wusa/GitService.kt index 3e21901..50ebeb2 100644 --- a/src/main/kotlin/io/wusa/GitService.kt +++ b/src/main/kotlin/io/wusa/GitService.kt @@ -82,7 +82,6 @@ class GitService { } private fun isGitDifferent(project: Project): Boolean { - print(GitCommandRunner.execute(project.projectDir, arrayOf("status", "-s"))) return GitCommandRunner.execute(project.projectDir, arrayOf("status", "-s")).isNotBlank() }