File tree 7 files changed +68
-8
lines changed
7 files changed +68
-8
lines changed Original file line number Diff line number Diff line change 3
3
All notable changes to this project will be documented in this file.
4
4
5
5
The 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 )
6
17
## [ 1.0.22] - 2024-04-30
7
18
### Added
8
19
* 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
+
1
5
2024-04-30 OSS Consortium <ws-opensource-cobol-contact@osscons.jp>
2
6
3
7
* 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 -*-
2
2
3
3
-----------------------------------------------------------------------
4
4
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
+
5
19
* opensource COBOL 4J 1.0.22
6
20
7
21
** 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
24
24
In order to check requirements of older versions,
25
25
see [ doc/requirements-all.md] ( ./doc/requirements-all.md ) .
26
26
27
- ## Installation
27
+ ## Installation (Linux)
28
28
29
29
### Install dependencies
30
30
@@ -67,6 +67,19 @@ Add /usr/lib/opensourcecobol4j/libcobj.jar to the environment variable $CLASSPAT
67
67
In order to check installations of older versions,
68
68
[ doc/installation/] ( ./doc/installation ) directory respectively
69
69
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
+
70
83
### Install with Docker
71
84
72
85
The 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
52
52
dnf install -y java-21-amazon-corretto-devel gcc make bison flex automake autoconf diffutils gettext tar gzip
53
53
```
54
54
55
- ### opensource COBOL 4Jのインストール
55
+ ### opensource COBOL 4Jのインストール (Linux)
56
56
57
57
下記のコマンドを実行する
58
58
@@ -71,6 +71,18 @@ sudo make install
71
71
72
72
古いバージョンのインストール方法は、[ doc/installation_jp] ( ./doc/installation_jp ) をご覧ください.
73
73
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
+
74
86
## Dockerによるインストール
75
87
76
88
opensource COBOL 4J v1.1.0をインストールしたDockerイメージを利用できます.
Original file line number Diff line number Diff line change
1
+ New! opensource COBOL 4J supports Windows!
1
2
# 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 "_ "
6
8
# 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 1
1
| version (opensource COBOL 4J) | OS | version (JDK) |
2
2
| -- | -- | -- |
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 |
3
7
| 1.0.22 | Ubuntu 22.04 | 21 |
4
8
| 1.0.22 | AlmaLinux 9 | 11 |
5
9
| 1.0.22 | Amazon Linux 2023 | 21 |
You can’t perform that action at this time.
0 commit comments