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

Hotfix/61 fix breaking change regex #70

Open
wants to merge 9 commits into
base: develop
Choose a base branch
from
Prev Previous commit
Next Next commit
remove debug statement and bump version
heldmaSICKAG committed Nov 26, 2020
commit 746b2c8ed59532fba31d4963aa07cb07a4ed7670
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -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'
}
}

2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
@@ -7,7 +7,7 @@ plugins {
}

group = "io.wusa"
version = "2.3.3"
version = "2.3.4"

dependencies {
implementation(kotlin("stdlib-jdk8"))
1 change: 0 additions & 1 deletion src/main/kotlin/io/wusa/GitService.kt
Original file line number Diff line number Diff line change
@@ -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()
}