Skip to content

Commit 3a6839e

Browse files
Merge pull request #401 from openmainframeproject/release-0.2.19
promote to version 0.2.19
2 parents 01f40a7 + 5dfa8b4 commit 3a6839e

File tree

9 files changed

+12
-17
lines changed

9 files changed

+12
-17
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,9 @@ 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+
## \[0.2.19\] 2025-10-24
24+
- FD area variables are written til FD area. This removed the problem with programs having the same variable in WORKING-STORAGE twice.
25+
2326
## \[0.2.18\] 2025-06-02
2427
- Sequence numbers are handled correct in long lines
2528

README.md

Lines changed: 1 addition & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -15,21 +15,10 @@ A big thank you to [Vicom Infinity](https://www.vicominfinity.com/) for kindly p
1515
Another thank you, goes towards Bankdata, for major contributions to the project.
1616

1717
## Immediate needs
18-
19-
As of March 2022 we could use help with:
20-
21-
- 1 or 2 additional team members - interns OK.
22-
- review of localized messages by native speakers and creation of additional localized message files.
18+
- tbd
2319

2420
## Downloads
2521

26-
Version 0.2.16 pre-release is available!
27-
28-
[//]: # (- Find the download on the project home page on the [Neo Pragma site](https://neopragma.com/projects/cobol-check/).)
29-
- Find distributions here: [Cobol Check Ditributions](https://github.com/openmainframeproject/cobol-check/tree/Developer/build/distributions).
30-
- Find general release information in the [changelog](https://github.com/openmainframeproject/cobol-check/blob/Developer/CHANGELOG.md).
31-
- Find more information about supported functionality on [the wiki](https://github.com/openmainframeproject/cobol-check/wiki/Common-Test-Case-Patterns).
32-
3322
If you want source code, you can clone the repository or download a compressed archive(currently outdated) [from here](https://github.com/openmainframeproject/cobol-check/releases/tag/0.1.0).
3423

3524
Cobol Check is also a Visual Studio Code extension. Download it in the Extensions tab in VS Code or take a look [here](https://marketplace.visualstudio.com/items?itemName=openmainframeproject.cobol-check-extension).

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.18'
9+
def productVersion = '0.2.19'
1010
def productName = 'cobol-check'
1111
group = 'org.openmainframeproject'
1212
description = 'Unit testing framework for Cobol'
239 KB
Binary file not shown.

build/libs/cobol-check-0.2.19.jar

267 KB
Binary file not shown.

vs-code-extension/CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@ All notable changes to the "cobol-unit-test" extension will be documented in thi
44

55
## [0.4.12] 02.06.2025
66
- Now using COBOL Check version 0.2.18
7+
-
8+
## [0.4.13] 24.10.2025
9+
- Now using COBOL Check version 0.2.19
710

811
## [0.4.11] 02.04.2025
912
- Now using COBOL Check version 0.2.17

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.18.jar');
23+
let cobolCheckJarPath = appendPath(externalVsCodeInstallationDir, 'Cobol-check/bin/cobol-check-0.2.19.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.18.jar');
13+
let cobolCheckJarPath = appendPath(externalVsCodeInstallationDir, 'Cobol-check/bin/cobol-check-0.2.19.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.12",
11+
"version": "0.4.13",
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.12",
43+
"version": "0.4.13",
4444
"icon": "images/cobol-check-logo-small.png",
4545
"repository": {
4646
"type": "git",

0 commit comments

Comments
 (0)