Skip to content

Release 1.1.8 hotfix1 #622

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -4,6 +4,14 @@ All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).

## [1.1.8-hotfix1] - 2025-04-18

### Fix

* Fix code generations for some WRITE statements.
* Older versions of the compiler converts some WRITE statements into invalid Java code.
* Fix the compiler to handle source code with UTF-8 encoded half-width Katakana characters correctly.

## [1.1.8] - 2025-03-31

### Fix
4 changes: 4 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
2025-04-18 OSS Consortium <ws-opensource-cobol-contact@osscons.jp>

* opensource COBOL 4J v1.1.8-hotfix1 released.

2025-03-31 OSS Consortium <ws-opensource-cobol-contact@osscons.jp>

* opensource COBOL 4J v1.1.8 released.
10 changes: 10 additions & 0 deletions NEWS
Original file line number Diff line number Diff line change
@@ -2,6 +2,16 @@ NEWS - user visible changes -*- outline -*-

-----------------------------------------------------------------------

* opensource COBOL 4J 1.1.8-hotfix1

** Bug Fixes

(1) Fix code generations for some WRITE statements.
* Older versions of the compiler converts some WRITE statements into invalid Java code.
(2) Fix the compiler to handle source code with UTF-8 encoded half-width Katakana characters correctly.

-----------------------------------------------------------------------

* opensource COBOL 4J 1.1.8

** Bug Fixes
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
@@ -52,9 +52,9 @@ dnf install -y java-21-amazon-corretto-devel gcc make bison flex automake autoco

### Install opensource COBOL 4J
```
curl -L -o opensourcecobol4j-v1.1.8.tar.gz https://github.com/opensourcecobol/opensourcecobol4j/archive/refs/tags/v1.1.8.tar.gz
tar zxvf opensourcecobol4j-v1.1.8.tar.gz
cd opensourcecobol4j-1.1.8
curl -L -o opensourcecobol4j-v1.1.8-hotfix1.tar.gz https://github.com/opensourcecobol/opensourcecobol4j/archive/refs/tags/v1.1.8-hotfix1.tar.gz
tar zxvf opensourcecobol4j-v1.1.8-hotfix1.tar.gz
cd opensourcecobol4j-1.1.8-hotfix1
./configure --prefix=/usr/
make
sudo make install
@@ -63,9 +63,9 @@ sudo make install
In order to install a compiler for UTF-8 encoded COBOL source code, run the following commands.

```
curl -L -o opensourcecobol4j-v1.1.8.tar.gz https://github.com/opensourcecobol/opensourcecobol4j/archive/refs/tags/v1.1.8.tar.gz
tar zxvf opensourcecobol4j-v1.1.8.tar.gz
cd opensourcecobol4j-1.1.8
curl -L -o opensourcecobol4j-v1.1.8-hotfix1.tar.gz https://github.com/opensourcecobol/opensourcecobol4j/archive/refs/tags/v1.1.8-hotfix1.tar.gz
tar zxvf opensourcecobol4j-v1.1.8-hotfix1.tar.gz
cd opensourcecobol4j-1.1.8-hotfix1
./configure --prefix=/usr/ --enable-utf8
touch cobj/*.m4
make
@@ -137,7 +137,7 @@ https://www.oracle.com/java/technologies/downloads/?er=221886#java8-windows
The docker container for opensource COBOL 4J is available.

```bash
docker pull opensourcecobol/opensourcecobol4j:20250307
docker pull opensourcecobol/opensourcecobol4j:20250418
```

Execute the following commands in order to run the "Hello World" COBOL program.
14 changes: 7 additions & 7 deletions README_JP.md
Original file line number Diff line number Diff line change
@@ -46,9 +46,9 @@ dnf install -y java-21-amazon-corretto-devel gcc make bison flex automake autoco

### opensource COBOL 4Jのインストール
```
curl -L -o opensourcecobol4j-v1.1.8.tar.gz https://github.com/opensourcecobol/opensourcecobol4j/archive/refs/tags/v1.1.8.tar.gz
tar zxvf opensourcecobol4j-v1.1.8.tar.gz
cd opensourcecobol4j-1.1.8
curl -L -o opensourcecobol4j-v1.1.8-hotfix1.tar.gz https://github.com/opensourcecobol/opensourcecobol4j/archive/refs/tags/v1.1.8-hotfix1.tar.gz
tar zxvf opensourcecobol4j-v1.1.8-hotfix1.tar.gz
cd opensourcecobol4j-1.1.8-hotfix1
./configure --prefix=/usr/
make
sudo make install
@@ -57,9 +57,9 @@ sudo make install
UTF-8のCOBOLソースコード対応版コンパイラをインストールする場合は、下記のコマンドを実行する。

```
curl -L -o opensourcecobol4j-v1.1.8.tar.gz https://github.com/opensourcecobol/opensourcecobol4j/archive/refs/tags/v1.1.8.tar.gz
tar zxvf opensourcecobol4j-v1.1.8.tar.gz
cd opensourcecobol4j-1.1.8
curl -L -o opensourcecobol4j-v1.1.8-hotfix1.tar.gz https://github.com/opensourcecobol/opensourcecobol4j/archive/refs/tags/v1.1.8-hotfix1.tar.gz
tar zxvf opensourcecobol4j-v1.1.8-hotfix1.tar.gz
cd opensourcecobol4j-1.1.8-hotfix1
./configure --prefix=/usr/ --enable-utf8
touch cobj/*.m4
make
@@ -126,7 +126,7 @@ Windows版のopensource COBOL 4JはVisual Studioに含まれるCLコンパイラ
opensource COBOL 4JのDockerコンテナを利用できます。

```bash
docker pull opensourcecobol/opensourcecobol4j:20250307
docker pull opensourcecobol/opensourcecobol4j:20250418
```

以下のコマンドを実行して、"Hello World"のCOBOLプログラムを実行します。
4 changes: 3 additions & 1 deletion ReleaseNote.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
### Fix

* Fix a bug of duplicate record keys of indexed files
* Fix code generations for some WRITE statements.
* Older versions of the compiler converts some WRITE statements into invalid Java code.
* Fix the compiler to handle source code with UTF-8 encoded half-width Katakana characters correctly.
Loading