Skip to content
Merged
Show file tree
Hide file tree
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
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
2023-01-31 OSS Consortium <[email protected]>

* opensource COBOL 4J v1.0.7 released.

2022-12-29 OSS Consortium <[email protected]>

* opensource COBOL 4J v1.0.6 released.

2022-11-22 OSS Consortium <[email protected]>

* opensource COBOL 4J v1.0.5 released.
Expand Down
46 changes: 39 additions & 7 deletions NEWS
Original file line number Diff line number Diff line change
@@ -1,6 +1,38 @@
NEWS - user visible changes -*- outline -*-

* opensource cobol 4j 1.0.5
* opensource cobol 4J 1.0.7

** New Features
(1) Implement DELETE statement of SEQUENTIAL files.
(2) Improve Java interface.
(3) Add -java-package option
(4) Implement SET ENVIRONMENT statement

** Bug fixes
(1) Fix a bug concerning the environment variables COB_OPEN_I_O and COB_OPEN_EXTEND.
(2) Fix the comparsion process of COMP-3
(3) Fix EXIT PERFORM and EXIT PERFORM CYCLE

** Miscellaneous
(1) Format all Java source code using Google Java Format

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

* opensource cobol 4J 1.0.6

** New Features
(1) Add -fshort-variable option
(2) make install command installs libcobj.jar in ${prefix}/lib/opensourcecobol4j

** Bug fixes
(1) Fix FUNCTION CURRENT-DATE

** Miscellaneous
(1) Build and run tests on AlmaLinux 9

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

* opensource cobol 4J 1.0.5

** New Features
(1) -m option and cobjrun command (an experimental feature)
Expand Down Expand Up @@ -30,7 +62,7 @@ NEWS - user visible changes -*- outline -*-

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

* opensource cobol 4j 1.0.4
* opensource cobol 4J 1.0.4

** New Features
(1) Rename cobc, the compile command, to cobj.
Expand Down Expand Up @@ -59,14 +91,14 @@ NEWS - user visible changes -*- outline -*-
-----------------------------------------------------------------------


* opensource cobol 4j 1.0.3
* opensource cobol 4J 1.0.3

** New features
(1) Change the storage library for indexed file to SQLite.

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

* opensource cobol 4j 1.0.2
* opensource cobol 4J 1.0.2

** New features
(1) Upgrade the license to GPL3.
Expand All @@ -76,21 +108,21 @@ NEWS - user visible changes -*- outline -*-

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

* opensource cobol 4j 1.0.1
* opensource cobol 4J 1.0.1

** Bug fixes
(1) Fix the transformation of call arguments

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

* opensource cobol 4j 1.0.0
* opensource cobol 4J 1.0.0

** Bug fixes
(1) Fix the status code after opening indexed files.
(2) Fix the behavior of delete and rewrite indexed files

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

* release opensource COBOL4J developers edition.
* release opensource COBOL 4J developers edition.

-----------------------------------------------------------------------
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# opensource COBOL 4J

[日本語版README](https://github.com/opensourcecobol/opensourcecobol4j/blob/main/README_JP.md)
[日本語版README](./README_JP.md)

"opensource COBOL 4J" is a COBOL compiler that translates COBOL parograms to Java programs.
This compiler is deeply inspired by ["opensource COBOL"](https://github.com/opensourcecobol/opensource-cobol) which translates COBOL programs to C programs.
Expand Down
2 changes: 1 addition & 1 deletion README_JP.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# opensource COBOL 4J

[English version README](https://github.com/opensourcecobol/opensourcecobol4j/blob/main/README.md)
[English version README](./README.md)

opensource COBOL 4JはCOBOLソースコードをJavaソースコードに変換するCOBOLコンパイラです.
opensource COBOL 4JはCOBOLからCに変換するCOBOLコンパイラ["opensource COBOL"](https://github.com/opensourcecobol/opensource-cobol)をもとに開発されています.
Expand Down
Loading