Skip to content

Commit eacba99

Browse files
Release 1.1.8 hotfix1 (#622)
1 parent f0412f2 commit eacba99

File tree

18 files changed

+3816
-3405
lines changed

18 files changed

+3816
-3405
lines changed

CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,14 @@ All notable changes to this project will be documented in this file.
44

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

7+
## [1.1.8-hotfix1] - 2025-04-18
8+
9+
### Fix
10+
11+
* Fix code generations for some WRITE statements.
12+
* Older versions of the compiler converts some WRITE statements into invalid Java code.
13+
* Fix the compiler to handle source code with UTF-8 encoded half-width Katakana characters correctly.
14+
715
## [1.1.8] - 2025-03-31
816

917
### Fix

ChangeLog

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
2025-04-18 OSS Consortium <ws-opensource-cobol-contact@osscons.jp>
2+
3+
* opensource COBOL 4J v1.1.8-hotfix1 released.
4+
15
2025-03-31 OSS Consortium <ws-opensource-cobol-contact@osscons.jp>
26

37
* opensource COBOL 4J v1.1.8 released.

NEWS

+10
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,16 @@ NEWS - user visible changes -*- outline -*-
22

33
-----------------------------------------------------------------------
44

5+
* opensource COBOL 4J 1.1.8-hotfix1
6+
7+
** Bug Fixes
8+
9+
(1) Fix code generations for some WRITE statements.
10+
* Older versions of the compiler converts some WRITE statements into invalid Java code.
11+
(2) Fix the compiler to handle source code with UTF-8 encoded half-width Katakana characters correctly.
12+
13+
-----------------------------------------------------------------------
14+
515
* opensource COBOL 4J 1.1.8
616

717
** Bug Fixes

README.md

+7-7
Original file line numberDiff line numberDiff line change
@@ -52,9 +52,9 @@ dnf install -y java-21-amazon-corretto-devel gcc make bison flex automake autoco
5252

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

6565
```
66-
curl -L -o opensourcecobol4j-v1.1.8.tar.gz https://github.com/opensourcecobol/opensourcecobol4j/archive/refs/tags/v1.1.8.tar.gz
67-
tar zxvf opensourcecobol4j-v1.1.8.tar.gz
68-
cd opensourcecobol4j-1.1.8
66+
curl -L -o opensourcecobol4j-v1.1.8-hotfix1.tar.gz https://github.com/opensourcecobol/opensourcecobol4j/archive/refs/tags/v1.1.8-hotfix1.tar.gz
67+
tar zxvf opensourcecobol4j-v1.1.8-hotfix1.tar.gz
68+
cd opensourcecobol4j-1.1.8-hotfix1
6969
./configure --prefix=/usr/ --enable-utf8
7070
touch cobj/*.m4
7171
make
@@ -137,7 +137,7 @@ https://www.oracle.com/java/technologies/downloads/?er=221886#java8-windows
137137
The docker container for opensource COBOL 4J is available.
138138
139139
```bash
140-
docker pull opensourcecobol/opensourcecobol4j:20250307
140+
docker pull opensourcecobol/opensourcecobol4j:20250418
141141
```
142142

143143
Execute the following commands in order to run the "Hello World" COBOL program.

README_JP.md

+7-7
Original file line numberDiff line numberDiff line change
@@ -46,9 +46,9 @@ dnf install -y java-21-amazon-corretto-devel gcc make bison flex automake autoco
4646

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

5959
```
60-
curl -L -o opensourcecobol4j-v1.1.8.tar.gz https://github.com/opensourcecobol/opensourcecobol4j/archive/refs/tags/v1.1.8.tar.gz
61-
tar zxvf opensourcecobol4j-v1.1.8.tar.gz
62-
cd opensourcecobol4j-1.1.8
60+
curl -L -o opensourcecobol4j-v1.1.8-hotfix1.tar.gz https://github.com/opensourcecobol/opensourcecobol4j/archive/refs/tags/v1.1.8-hotfix1.tar.gz
61+
tar zxvf opensourcecobol4j-v1.1.8-hotfix1.tar.gz
62+
cd opensourcecobol4j-1.1.8-hotfix1
6363
./configure --prefix=/usr/ --enable-utf8
6464
touch cobj/*.m4
6565
make
@@ -126,7 +126,7 @@ Windows版のopensource COBOL 4JはVisual Studioに含まれるCLコンパイラ
126126
opensource COBOL 4JのDockerコンテナを利用できます。
127127
128128
```bash
129-
docker pull opensourcecobol/opensourcecobol4j:20250307
129+
docker pull opensourcecobol/opensourcecobol4j:20250418
130130
```
131131

132132
以下のコマンドを実行して、"Hello World"のCOBOLプログラムを実行します。

ReleaseNote.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
11
### Fix
22

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

0 commit comments

Comments
 (0)