File tree Expand file tree Collapse file tree 7 files changed +68
-8
lines changed Expand file tree Collapse file tree 7 files changed +68
-8
lines changed Original file line number Diff line number Diff line change 33All notable changes to this project will be documented in this file.
44
55The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.0.0/ ) .
6+ ## [ 1.1.0] - 2024-05-31
7+ New! opensource COBOL 4J supports Windows! (#377 )
8+ ### Added
9+ * Add a command line option ` -Wimplicit-define ` option (#386 )
10+ ### Fix
11+ * Fix READ PREVIOUS statement after START statement with <= operator (#379 )
12+ * Fix Java code generated by cobj-api (#380 )
13+ * "-" in Java variables are converted to "_ "
14+ ### Miscellaneous
15+ * Refactor libcobj/ (#387 )
16+ * Support Ubuntu 24.04 (#375 )
617## [ 1.0.22] - 2024-04-30
718### Added
819* Add cobj-api command (#370 )
Original file line number Diff line number Diff line change 1+ 2024-05-31 OSS Consortium <ws-opensource-cobol-contact@osscons.jp>
2+
3+ * opensource COBOL 4J v1.1.0 released.
4+
152024-04-30 OSS Consortium <ws-opensource-cobol-contact@osscons.jp>
26
37 * opensource COBOL 4J v1.0.22 released.
Original file line number Diff line number Diff line change @@ -2,6 +2,20 @@ NEWS - user visible changes -*- outline -*-
22
33-----------------------------------------------------------------------
44
5+ * opensource COBOL 4J 1.1.0
6+
7+ ** New Features
8+ (1) Support Windows
9+ (2) Add `-Wimplicit-define`
10+ ** Bug Fixes
11+ (1) Fix READ PREVIOUS statement after START statement with <= operator
12+ (2) Fix Java code generated by cobj-api. Symbols "-" in Java variables are converted to "_"
13+ ** Miscellaneous
14+ (1) Refactor libcobj/
15+ (2) Support Ubuntu 24.04
16+
17+ -----------------------------------------------------------------------
18+
519* opensource COBOL 4J 1.0.22
620
721** New Features
Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ opensource COBOL 4J is tested with the following platforms and dependencies
2424In order to check requirements of older versions,
2525see [ doc/requirements-all.md] ( ./doc/requirements-all.md ) .
2626
27- ## Installation
27+ ## Installation (Linux)
2828
2929### Install dependencies
3030
@@ -67,6 +67,19 @@ Add /usr/lib/opensourcecobol4j/libcobj.jar to the environment variable $CLASSPAT
6767In order to check installations of older versions,
6868[ doc/installation/] ( ./doc/installation ) directory respectively
6969
70+
71+ ## Installation (Windows)
72+
73+ 1 . Visit the [ Release page] ( https://github.com/opensourcecobol/opensourcecobol4j/releases/tag/v1.1.0 )
74+ 1 . Download Source code and extract it.
75+ 1 . Download ` cobj.exe ` .
76+ 1 . Download ` libcobj.jar ` .
77+ 1 . Rename the directory ` opensourcecobol4j-1.1.0\opensourcecobol4j-1.1.0 ` to ` opensourcecobol4j-1.1.0\opensourcecobol4j ` .
78+ 1 . Move the directory ` opensourcecobol4j-1.1.0\opensourcecobol4j ` to ` C:\ ` .
79+ 1 . Make sure that there exists a directory ` C:\opensourcecobol4j\config ` .
80+ 1 . Update the environment variable ` Path ` so that it contains the directory containing ` cobj.exe `
81+ 1 . Update the environment variable ` CLASSPATH ` so that it contains the path to ` libcobj.jar ` .
82+
7083### Install with Docker
7184
7285The docker container for opensource COBOL 4J is available.
Original file line number Diff line number Diff line change @@ -52,7 +52,7 @@ dnf -y update
5252dnf install -y java-21-amazon-corretto-devel gcc make bison flex automake autoconf diffutils gettext tar gzip
5353```
5454
55- ### opensource COBOL 4Jのインストール
55+ ### opensource COBOL 4Jのインストール (Linux)
5656
5757下記のコマンドを実行する
5858
@@ -71,6 +71,18 @@ sudo make install
7171
7272古いバージョンのインストール方法は、[ doc/installation_jp] ( ./doc/installation_jp ) をご覧ください.
7373
74+ ## opensource COBOL 4Jのインストール (Windows)
75+
76+ 1 . [ リリースページ] ( https://github.com/opensourcecobol/opensourcecobol4j/releases/tag/v1.1.0 ) を開く
77+ 1 . ソースコードをダウンロードして、回答する。
78+ 1 . ` cobj.exe ` をダウンロードする.
79+ 1 . ` libcobj.jar ` をダウンロードする.
80+ 1 . ` opensourcecobol4j-1.1.0\opensourcecobol4j-1.1.0 ` ディレクトリを` opensourcecobol4j-1.1.0\opensourcecobol4j ` にリネームする。
81+ 1 . ` opensourcecobol4j-1.1.0\opensourcecobol4j ` ディレクトリを` C:\ ` に移動する.
82+ 1 . これによりディレクトリ` C:\opensourcecobol4j\config ` が存在することを確認する.
83+ 1 . 環境変数` Path ` を設定して` cobj.exe ` にパスを通す.
84+ 1 . 環境変数` CLASSPATH ` を設定して` libcobj.jar ` にパスを通す.
85+
7486## Dockerによるインストール
7587
7688opensource COBOL 4J v1.1.0をインストールしたDockerイメージを利用できます.
Original file line number Diff line number Diff line change 1+ New! opensource COBOL 4J supports Windows!
12# Added
2- * Add cobj-api command (#370 )
3- * With cobj-api, you can easily generate an Spring boot Java file that calls the program generated by cobj.
4- * See https://github.com/opensourcecobol/opensourcecobol4j?tab=readme-ov-file#cobj-api
5- * Implement a -Wstrict-typing (#369 )
3+ * Add a command line option ` -Wimplicit-define ` option
4+ # Fix
5+ * Fix READ PREVIOUS statement after START statement with <= operator
6+ * Fix Java code generated by cobj-api
7+ * "-" in Java variables are converted to "_ "
68# Miscellaneous
7- * Simplify generated Java code based on SonarQube analysis ( # 366 )
8- * Improve the error message for record keys with duplicates ( # 368 )
9+ * Refactor libcobj/
10+ * Support Ubuntu 24.04
Original file line number Diff line number Diff line change 11| version (opensource COBOL 4J) | OS | version (JDK) |
22| -- | -- | -- |
3+ | 1.1.0 | Windows | 21 |
4+ | 1.1.0 | Ubuntu 24.04 | 21 |
5+ | 1.1.0 | AlmaLinux 9 | 11 |
6+ | 1.1.0 | Amazon Linux 2023 | 21 |
37| 1.0.22 | Ubuntu 22.04 | 21 |
48| 1.0.22 | AlmaLinux 9 | 11 |
59| 1.0.22 | Amazon Linux 2023 | 21 |
You can’t perform that action at this time.
0 commit comments