Skip to content

Commit

Permalink
Version bump 0.0.6
Browse files Browse the repository at this point in the history
  • Loading branch information
davenicolette committed Mar 13, 2021
1 parent e95de4a commit 014e0f9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ plugins {
id 'jacoco'
}

version = '0.0.5' +
version = '0.0.6' +
''
def productVersion = '0.0.5'
def productVersion = '0.0.6'
def productName = 'cobolcheck'
group = 'com.neopragma'
description = 'Unit testing framework for Cobol'
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/neopragma/cobolcheck/Version.java
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
public class Version {
private static final Integer MAJOR = 0;
private static final Integer MINOR = 0;
private static final String PATCH = "5";
private static final String PATCH = "6";

public static String current() {
return String.format("Version: %s.%s.%s", MAJOR.toString(), MINOR.toString(), PATCH);
Expand Down

0 comments on commit 014e0f9

Please sign in to comment.