diff --git a/CHANGELOG.md b/CHANGELOG.md index db9226e2..29ae9964 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -20,6 +20,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Mock SQL tables - Mock batch file I/O +## \[0.2.19\] 2025-10-24 +- FD area variables are written til FD area. This removed the problem with programs having the same variable in WORKING-STORAGE twice. + ## \[0.2.18\] 2025-06-02 - Sequence numbers are handled correct in long lines diff --git a/README.md b/README.md index c24867cb..07cc99cb 100644 --- a/README.md +++ b/README.md @@ -15,21 +15,10 @@ A big thank you to [Vicom Infinity](https://www.vicominfinity.com/) for kindly p Another thank you, goes towards Bankdata, for major contributions to the project. ## Immediate needs - -As of March 2022 we could use help with: - -- 1 or 2 additional team members - interns OK. -- review of localized messages by native speakers and creation of additional localized message files. +- tbd ## Downloads -Version 0.2.16 pre-release is available! - -[//]: # (- Find the download on the project home page on the [Neo Pragma site](https://neopragma.com/projects/cobol-check/).) -- Find distributions here: [Cobol Check Ditributions](https://github.com/openmainframeproject/cobol-check/tree/Developer/build/distributions). -- Find general release information in the [changelog](https://github.com/openmainframeproject/cobol-check/blob/Developer/CHANGELOG.md). -- Find more information about supported functionality on [the wiki](https://github.com/openmainframeproject/cobol-check/wiki/Common-Test-Case-Patterns). - 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). 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). diff --git a/build.gradle b/build.gradle index 1e7ef183..49ead91d 100644 --- a/build.gradle +++ b/build.gradle @@ -6,7 +6,7 @@ plugins { id 'jacoco' } -def productVersion = '0.2.18' +def productVersion = '0.2.19' def productName = 'cobol-check' group = 'org.openmainframeproject' description = 'Unit testing framework for Cobol' diff --git a/build/distributions/cobol-check-0.2.19.zip b/build/distributions/cobol-check-0.2.19.zip new file mode 100644 index 00000000..2967bcbd Binary files /dev/null and b/build/distributions/cobol-check-0.2.19.zip differ diff --git a/build/libs/cobol-check-0.2.19.jar b/build/libs/cobol-check-0.2.19.jar new file mode 100644 index 00000000..4621e8b1 Binary files /dev/null and b/build/libs/cobol-check-0.2.19.jar differ diff --git a/vs-code-extension/CHANGELOG.md b/vs-code-extension/CHANGELOG.md index 32de2f8b..3c5b6876 100644 --- a/vs-code-extension/CHANGELOG.md +++ b/vs-code-extension/CHANGELOG.md @@ -4,6 +4,9 @@ All notable changes to the "cobol-unit-test" extension will be documented in thi ## [0.4.12] 02.06.2025 - Now using COBOL Check version 0.2.18 +- +## [0.4.13] 24.10.2025 +- Now using COBOL Check version 0.2.19 ## [0.4.11] 02.04.2025 - Now using COBOL Check version 0.2.17 diff --git a/vs-code-extension/client/src/extension.ts b/vs-code-extension/client/src/extension.ts index 15f2abcf..3032cc1b 100644 --- a/vs-code-extension/client/src/extension.ts +++ b/vs-code-extension/client/src/extension.ts @@ -20,7 +20,7 @@ import { getContentFromFilesystem, MarkdownTestData, TestCase, testData, TestFil let externalVsCodeInstallationDir = vscode.extensions.getExtension("openmainframeproject.cobol-check-extension").extensionPath; let configPath = appendPath(externalVsCodeInstallationDir, 'Cobol-check/config.properties'); let defaultConfigPath = appendPath(externalVsCodeInstallationDir, 'Cobol-check/default.properties'); -let cobolCheckJarPath = appendPath(externalVsCodeInstallationDir, 'Cobol-check/bin/cobol-check-0.2.18.jar'); +let cobolCheckJarPath = appendPath(externalVsCodeInstallationDir, 'Cobol-check/bin/cobol-check-0.2.19.jar'); let currentPlatform = getOS(); diff --git a/vs-code-extension/client/src/services/TestTree.ts b/vs-code-extension/client/src/services/TestTree.ts index b53971c3..36f5ba0e 100644 --- a/vs-code-extension/client/src/services/TestTree.ts +++ b/vs-code-extension/client/src/services/TestTree.ts @@ -10,7 +10,7 @@ import { handleCobolCheckOut } from '../Helpers/ExtensionHelper'; const textDecoder = new TextDecoder('utf-8'); let externalVsCodeInstallationDir = vscode.extensions.getExtension("openmainframeproject.cobol-check-extension").extensionPath; let configPath = appendPath(externalVsCodeInstallationDir, 'Cobol-check/config.properties'); -let cobolCheckJarPath = appendPath(externalVsCodeInstallationDir, 'Cobol-check/bin/cobol-check-0.2.18.jar'); +let cobolCheckJarPath = appendPath(externalVsCodeInstallationDir, 'Cobol-check/bin/cobol-check-0.2.19.jar'); diff --git a/vs-code-extension/package.json b/vs-code-extension/package.json index 4ecd002c..c5afdeb1 100644 --- a/vs-code-extension/package.json +++ b/vs-code-extension/package.json @@ -8,7 +8,7 @@ "Snippets" ], "description": "Extension for running unit tests in Cobol", - "version": "0.4.12", + "version": "0.4.13", "icon": "images/cobol-check-logo-small.png", "repository": { "type": "git", @@ -40,7 +40,7 @@ } ], "description": "Extension for running unit tests in Cobol", - "version": "0.4.12", + "version": "0.4.13", "icon": "images/cobol-check-logo-small.png", "repository": { "type": "git",