Skip to content

Commit bc56851

Browse files
authored
Merge pull request #388 from openmainframeproject/use-correct-encoding
Bump version
2 parents 2ddfe20 + 4d0f6ff commit bc56851

File tree

9 files changed

+10
-8
lines changed

9 files changed

+10
-8
lines changed

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
2020
- Mock SQL tables
2121
- Mock batch file I/O
2222

23-
23+
## \[0.2.17\] 2025-04-02
24+
- Made sure we are using the correct encoding
2425

2526
## \[0.2.16\] 2024-12-05
2627
- Fixed a bug an extra space would be added to the list of mocks, which would create issues when looking for mocks.

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ plugins {
66
id 'jacoco'
77
}
88

9-
def productVersion = '0.2.16'
9+
def productVersion = '0.2.17'
1010
def productName = 'cobol-check'
1111
group = 'org.openmainframeproject'
1212
description = 'Unit testing framework for Cobol'
238 KB
Binary file not shown.

src/main/java/org/openmainframeproject/cobolcheck/workers/Initializer.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ public class Initializer {
2121
private StatusController statusController;
2222

2323
public Initializer(String[] args) {
24-
Log.info(Messages.get("INF000", "0.2.14"));
24+
Log.info(Messages.get("INF000", "0.2.17"));
2525
argumentController = new ArgumentHandlerController(args);
2626
environmentController = new EnvironmentSetupController();
2727
statusController = new StatusController();

vs-code-extension/CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@
22

33
All notable changes to the "cobol-unit-test" extension will be documented in this file. Versioning according to SemVer: https://semver.org/
44

5-
5+
## [0.4.11] 02.04.2025
6+
- Now using COBOL Check version 0.2.17
67

78
## [0.4.10] 26.02.2025
89
- Now using COBOL Check version 0.2.16
265 KB
Binary file not shown.

vs-code-extension/client/src/extension.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ import { getContentFromFilesystem, MarkdownTestData, TestCase, testData, TestFil
2020
let externalVsCodeInstallationDir = vscode.extensions.getExtension("openmainframeproject.cobol-check-extension").extensionPath;
2121
let configPath = appendPath(externalVsCodeInstallationDir, 'Cobol-check/config.properties');
2222
let defaultConfigPath = appendPath(externalVsCodeInstallationDir, 'Cobol-check/default.properties');
23-
let cobolCheckJarPath = appendPath(externalVsCodeInstallationDir, 'Cobol-check/bin/cobol-check-0.2.16.jar');
23+
let cobolCheckJarPath = appendPath(externalVsCodeInstallationDir, 'Cobol-check/bin/cobol-check-0.2.17.jar');
2424
let currentPlatform = getOS();
2525

2626

vs-code-extension/client/src/services/TestTree.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import { handleCobolCheckOut } from '../Helpers/ExtensionHelper';
1010
const textDecoder = new TextDecoder('utf-8');
1111
let externalVsCodeInstallationDir = vscode.extensions.getExtension("openmainframeproject.cobol-check-extension").extensionPath;
1212
let configPath = appendPath(externalVsCodeInstallationDir, 'Cobol-check/config.properties');
13-
let cobolCheckJarPath = appendPath(externalVsCodeInstallationDir, 'Cobol-check/bin/cobol-check-0.2.16.jar');
13+
let cobolCheckJarPath = appendPath(externalVsCodeInstallationDir, 'Cobol-check/bin/cobol-check-0.2.17.jar');
1414

1515

1616

vs-code-extension/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"Snippets"
99
],
1010
"description": "Extension for running unit tests in Cobol",
11-
"version": "0.4.10",
11+
"version": "0.4.11",
1212
"icon": "images/cobol-check-logo-small.png",
1313
"repository": {
1414
"type": "git",
@@ -40,7 +40,7 @@
4040
}
4141
],
4242
"description": "Extension for running unit tests in Cobol",
43-
"version": "0.4.10",
43+
"version": "0.4.11",
4444
"icon": "images/cobol-check-logo-small.png",
4545
"repository": {
4646
"type": "git",

0 commit comments

Comments
 (0)