Skip to content

Commit f15aa3d

Browse files
committed
build(release): bump patch version
1 parent a8fbfca commit f15aa3d

File tree

6 files changed

+12
-15
lines changed

6 files changed

+12
-15
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# Changelog
22

3+
## 6.3.4
4+
5+
##### Fixes
6+
- Only register version task for the current project #97
7+
- Fix version pattern matcher. Ensure that matching groups are available. #96
8+
9+
310
## 6.3.3
411

512
##### Fixes

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ This plugin can virtually set project version and properties, based on current *
2828

2929
```groovy
3030
plugins {
31-
id 'me.qoomon.git-versioning' version '6.3.3'
31+
id 'me.qoomon.git-versioning' version '6.3.4'
3232
}
3333
3434
version = '0.0.0-SNAPSHOT'
@@ -41,7 +41,7 @@ gitVersioning.apply {
4141

4242
```kotlin
4343
plugins {
44-
id("me.qoomon.git-versioning") version "6.3.3"
44+
id("me.qoomon.git-versioning") version "6.3.4"
4545
}
4646

4747
version = "0.0.0-SNAPSHOT"

build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
plugins {
2-
id "com.github.ben-manes.versions" version "0.42.0"
2+
id "com.github.ben-manes.versions" version "0.43.0"
33

44
id "java"
55
id "java-gradle-plugin"
@@ -12,7 +12,7 @@ plugins {
1212
}
1313

1414
group 'me.qoomon'
15-
version '6.4.0'
15+
version '6.3.4'
1616
sourceCompatibility = JavaVersion.VERSION_11
1717
targetCompatibility = JavaVersion.VERSION_11
1818

src/main/java/me/qoomon/gitversioning/commons/TagComparator.java

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,10 @@
55
import org.eclipse.jgit.lib.Repository;
66
import org.eclipse.jgit.revwalk.*;
77

8-
import java.io.IOException;
98
import java.util.Comparator;
109
import java.util.Date;
1110
import java.util.concurrent.Callable;
1211

13-
import static org.eclipse.jgit.lib.Constants.OBJ_TAG;
14-
1512
public class TagComparator implements Comparator<Ref> {
1613

1714
private final RevWalk revWalk;

src/main/java/me/qoomon/gradle/gitversioning/GitVersioningPlugin.java

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -8,18 +8,12 @@
88
public class GitVersioningPlugin implements Plugin<Project> {
99

1010
/**
11-
* for main logic see {@link GitVersioningPluginExtension#apply}
11+
* for main logic see {@link GitVersioningPluginExtension#apply(GitVersioningPluginConfig)}
1212
*/
1313
public void apply(@Nonnull Project project) {
1414

1515
project.getExtensions().create("gitVersioning", GitVersioningPluginExtension.class, project);
1616

17-
// Only Register version task for current project so the plugin may be applied
18-
// on
19-
// sub projects. It would be nice to only define this once for all project in
20-
// a multi-module project, however there are a few other considerations that
21-
// need
22-
// to be made and this current change will make this plugin more composable.
2317
project.getTasks().register("version", VersionTask.class);
2418
}
2519
}

src/main/java/me/qoomon/gradle/gitversioning/GitVersioningPluginExtension.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
77
import me.qoomon.gradle.gitversioning.GitVersioningPluginConfig.RefPatchDescription;
88
import org.apache.commons.configuration2.PropertiesConfiguration;
99
import org.apache.commons.configuration2.ex.ConfigurationException;
10-
import org.apache.commons.lang3.StringUtils;
1110
import org.apache.maven.artifact.versioning.DefaultArtifactVersion;
1211
import org.eclipse.jgit.lib.Repository;
1312
import org.eclipse.jgit.storage.file.FileRepositoryBuilder;

0 commit comments

Comments
 (0)