Skip to content

Commit

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

version = '0.0.6' +
''
def productVersion = '0.0.6'
def productVersion = '0.1.0'
def productName = 'cobolcheck'
group = 'com.neopragma'
description = 'Unit testing framework for Cobol'
Expand Down Expand Up @@ -144,7 +142,7 @@ task prepareDistribution(type: Zip) {
from "${projectDir}"
include([ "config.properties",
"scripts/*",
"bin/cobol-check-*.jar",
"bin/cobol-check-${productVersion}.jar",
"src/main/cobol/ALPHA.CBL",
"src/main/cobol/NUMBERS.CBL",
"src/test/cobol/ALPHA/*",
Expand Down
4 changes: 2 additions & 2 deletions src/main/java/com/neopragma/cobolcheck/Version.java
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@
*/
public class Version {
private static final Integer MAJOR = 0;
private static final Integer MINOR = 0;
private static final String PATCH = "6";
private static final Integer MINOR = 1;
private static final String PATCH = "0";

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

0 comments on commit 6cc8ec0

Please sign in to comment.