Skip to content

Commit e4907f9

Browse files
Release 1.1.16 (#776)
* change: update the version to 1.1.16 * doc: update documents to release v1.1.16 * doc: update ReleaseNote.md * doc: update release dates
1 parent cff34ba commit e4907f9

15 files changed

Lines changed: 136 additions & 45 deletions

File tree

CHANGELOG.md

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,29 @@ 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.16] - 2025-12-25
8+
9+
### New Features
10+
11+
* Implementation of CANCEL ALL (#748)
12+
* Improve readability of generated code
13+
* Rename some variables to more descriptive names (#775)
14+
* Replace magic numbers with constants or calculations between constants (#768)
15+
16+
### Fixed
17+
18+
* Fix `-j` option and `-o` option (#754)
19+
* Fix cobj-idx installation issues (#769)
20+
* Fix configuration items related to maximum size of PIC N items (#770)
21+
* Fix cobj command to detect duplicate labels (#774)
22+
* Fix `doc/converted_Java_file_JP.md` (#759)
23+
24+
### Miscellaneous
25+
26+
* Remove unused code from libcobj.jar (runtime library) (#756)
27+
* Remove unnecessary code from generated Java code to improve readability (#760)
28+
* Improve Dev Container configuration (#761)
29+
730
## [1.1.15] - 2025-11-27
831
### Fixed
932
* Fix a bug related to EXTERNAL items

ChangeLog

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
2025-12-25 OSS Consortium <ws-opensource-cobol-contact@osscons.jp>
2+
3+
* opensource COBOL 4J v1.1.16 released.
4+
15
2025-11-27 OSS Consortium <ws-opensource-cobol-contact@osscons.jp>
26

37
* opensource COBOL 4J v1.1.15 released.

NEWS

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,32 @@
11
NEWS - user visible changes -*- outline -*-
22

3+
-----------------------------------------------------------------------
4+
5+
* opensource COBOL 4J 1.1.16
6+
7+
** New Features
8+
9+
(1) Implementation of CANCEL ALL
10+
(2) Improve readability of generated code
11+
* Rename some variables to more descriptive names
12+
* Replace magic numbers with constants or calculations between constants
13+
14+
** Bug Fixes
15+
16+
(1) Fix `-j` option and `-o` option
17+
(2) Fix cobj-idx installation issues
18+
(3) Fix configuration items related to maximum size of PIC N items
19+
(4) Fix cobj command to detect duplicate labels
20+
(5) Fix `doc/converted_Java_file_JP.md`
21+
22+
** Miscellaneous
23+
24+
(1) Remove unused code from libcobj.jar (runtime library)
25+
(2) Remove unnecessary code from generated Java code to improve readability
26+
(3) Improve Dev Container configuration
27+
28+
-----------------------------------------------------------------------
29+
330
* opensource COBOL 4J 1.1.15
431

532
** Bug Fixes

README.md

Lines changed: 7 additions & 7 deletions
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.15.tar.gz https://github.com/opensourcecobol/opensourcecobol4j/archive/refs/tags/v1.1.15.tar.gz
56-
tar zxvf opensourcecobol4j-v1.1.15.tar.gz
57-
cd opensourcecobol4j-1.1.15
55+
curl -L -o opensourcecobol4j-v1.1.16.tar.gz https://github.com/opensourcecobol/opensourcecobol4j/archive/refs/tags/v1.1.16.tar.gz
56+
tar zxvf opensourcecobol4j-v1.1.16.tar.gz
57+
cd opensourcecobol4j-1.1.16
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.15.tar.gz https://github.com/opensourcecobol/opensourcecobol4j/archive/refs/tags/v1.1.15.tar.gz
67-
tar zxvf opensourcecobol4j-v1.1.15.tar.gz
68-
cd opensourcecobol4j-1.1.15
66+
curl -L -o opensourcecobol4j-v1.1.16.tar.gz https://github.com/opensourcecobol/opensourcecobol4j/archive/refs/tags/v1.1.16.tar.gz
67+
tar zxvf opensourcecobol4j-v1.1.16.tar.gz
68+
cd opensourcecobol4j-1.1.16
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:20251127
140+
docker pull opensourcecobol/opensourcecobol4j:20251225
141141
```
142142

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

README_JP.md

Lines changed: 7 additions & 7 deletions
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.15.tar.gz https://github.com/opensourcecobol/opensourcecobol4j/archive/refs/tags/v1.1.15.tar.gz
50-
tar zxvf opensourcecobol4j-v1.1.15.tar.gz
51-
cd opensourcecobol4j-1.1.15
49+
curl -L -o opensourcecobol4j-v1.1.16.tar.gz https://github.com/opensourcecobol/opensourcecobol4j/archive/refs/tags/v1.1.16.tar.gz
50+
tar zxvf opensourcecobol4j-v1.1.16.tar.gz
51+
cd opensourcecobol4j-1.1.16
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.15.tar.gz https://github.com/opensourcecobol/opensourcecobol4j/archive/refs/tags/v1.1.15.tar.gz
61-
tar zxvf opensourcecobol4j-v1.1.15.tar.gz
62-
cd opensourcecobol4j-1.1.15
60+
curl -L -o opensourcecobol4j-v1.1.16.tar.gz https://github.com/opensourcecobol/opensourcecobol4j/archive/refs/tags/v1.1.16.tar.gz
61+
tar zxvf opensourcecobol4j-v1.1.16.tar.gz
62+
cd opensourcecobol4j-1.1.16
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:20251127
129+
docker pull opensourcecobol/opensourcecobol4j:20251225
130130
```
131131

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

ReleaseNote.md

Lines changed: 36 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,41 @@
1+
### New Features
2+
3+
* Implementation of CANCEL ALL (#748)
4+
* CANCEL ALL performs CANCEL processing on all modules in the call chain of
5+
the program that calls CANCEL ALL.
6+
* Improve readability of generated code
7+
* Rename some variables to more descriptive names (#775)
8+
* Replace magic numbers with constants or calculations between constants (#768)
9+
10+
&emsp;&emsp;Before these changes
11+
12+
```java
13+
a_1 = new CobolFieldAttribute (18, 5, 0, 7, null);
14+
```
15+
16+
&emsp;&emsp;After these changes
17+
18+
```java
19+
a_1_NumericPacked_Digits5_Scale0_HaveSign_SignSeparate_SignLeading = new CobolFieldAttribute(
20+
CobolFieldAttribute.COB_TYPE_NUMERIC_PACKED,
21+
/* digits= */ 5,
22+
/* scale= */ 0,
23+
CobolFieldAttribute.COB_FLAG_HAVE_SIGN
24+
| CobolFieldAttribute.COB_FLAG_SIGN_SEPARATE
25+
| CobolFieldAttribute.COB_FLAG_SIGN_LEADING,
26+
/* pic= */ null);
27+
```
28+
129
### Fixed
230

3-
* Fix a bug related to EXTERNAL items. (#747, #750)
31+
* Fix `-j` option and `-o` option (#754)
32+
* Fix cobj-idx installation issues (#769)
33+
* Fix configuration items related to maximum size of PIC N items (#770)
34+
* Fix cobj command to detect duplicate labels (#774)
35+
* Fix `doc/converted_Java_file_JP.md` (#759)
436

537
### Miscellaneous
638

7-
* Slightly improve the readability of generated Java code for GO TO statements. (#752)
8-
39+
* Remove unused code from libcobj.jar (runtime library) (#756)
40+
* Remove unnecessary code from generated Java code to improve readability (#760)
41+
* Improve Dev Container configuration (#761)

configure

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#! /bin/sh
22
# Guess values for system-dependent variables and create Makefiles.
3-
# Generated by GNU Autoconf 2.69 for opensource COBOL 4J 1.1.15.
3+
# Generated by GNU Autoconf 2.69 for opensource COBOL 4J 1.1.16.
44
#
55
# Report bugs to <ws-opensource-cobol-contact@osscons.jp>.
66
#
@@ -589,9 +589,9 @@ MAKEFLAGS=
589589

590590
# Identity of this package.
591591
PACKAGE_NAME='opensource COBOL 4J'
592-
PACKAGE_TARNAME='opensource-cobol-4j-1.1.15'
593-
PACKAGE_VERSION='1.1.15'
594-
PACKAGE_STRING='opensource COBOL 4J 1.1.15'
592+
PACKAGE_TARNAME='opensource-cobol-4j-1.1.16'
593+
PACKAGE_VERSION='1.1.16'
594+
PACKAGE_STRING='opensource COBOL 4J 1.1.16'
595595
PACKAGE_BUGREPORT='ws-opensource-cobol-contact@osscons.jp'
596596
PACKAGE_URL=''
597597

@@ -1382,7 +1382,7 @@ if test "$ac_init_help" = "long"; then
13821382
# Omit some internal or obsolete options to make the list less imposing.
13831383
# This message is too long to be a string in the A/UX 3.1 sh.
13841384
cat <<_ACEOF
1385-
\`configure' configures opensource COBOL 4J 1.1.15 to adapt to many kinds of systems.
1385+
\`configure' configures opensource COBOL 4J 1.1.16 to adapt to many kinds of systems.
13861386

13871387
Usage: $0 [OPTION]... [VAR=VALUE]...
13881388

@@ -1432,7 +1432,7 @@ Fine tuning of the installation directories:
14321432
--localedir=DIR locale-dependent data [DATAROOTDIR/locale]
14331433
--mandir=DIR man documentation [DATAROOTDIR/man]
14341434
--docdir=DIR documentation root
1435-
[DATAROOTDIR/doc/opensource-cobol-4j-1.1.15]
1435+
[DATAROOTDIR/doc/opensource-cobol-4j-1.1.16]
14361436
--htmldir=DIR html documentation [DOCDIR]
14371437
--dvidir=DIR dvi documentation [DOCDIR]
14381438
--pdfdir=DIR pdf documentation [DOCDIR]
@@ -1454,7 +1454,7 @@ fi
14541454

14551455
if test -n "$ac_init_help"; then
14561456
case $ac_init_help in
1457-
short | recursive ) echo "Configuration of opensource COBOL 4J 1.1.15:";;
1457+
short | recursive ) echo "Configuration of opensource COBOL 4J 1.1.16:";;
14581458
esac
14591459
cat <<\_ACEOF
14601460

@@ -1581,7 +1581,7 @@ fi
15811581
test -n "$ac_init_help" && exit $ac_status
15821582
if $ac_init_version; then
15831583
cat <<\_ACEOF
1584-
opensource COBOL 4J configure 1.1.15
1584+
opensource COBOL 4J configure 1.1.16
15851585
generated by GNU Autoconf 2.69
15861586

15871587
Copyright (C) 2012 Free Software Foundation, Inc.
@@ -2133,7 +2133,7 @@ cat >config.log <<_ACEOF
21332133
This file contains any messages produced by compilers while
21342134
running configure, to aid debugging if configure makes a mistake.
21352135

2136-
It was created by opensource COBOL 4J $as_me 1.1.15, which was
2136+
It was created by opensource COBOL 4J $as_me 1.1.16, which was
21372137
generated by GNU Autoconf 2.69. Invocation command line was
21382138

21392139
$ $0 $@
@@ -3024,8 +3024,8 @@ fi
30243024

30253025

30263026
# Define the identity of the package.
3027-
PACKAGE='opensource-cobol-4j-1.1.15'
3028-
VERSION='1.1.15'
3027+
PACKAGE='opensource-cobol-4j-1.1.16'
3028+
VERSION='1.1.16'
30293029

30303030

30313031
cat >>confdefs.h <<_ACEOF
@@ -23446,7 +23446,7 @@ cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
2344623446
# report actual input values of CONFIG_FILES etc. instead of their
2344723447
# values after options handling.
2344823448
ac_log="
23449-
This file was extended by opensource COBOL 4J $as_me 1.1.15, which was
23449+
This file was extended by opensource COBOL 4J $as_me 1.1.16, which was
2345023450
generated by GNU Autoconf 2.69. Invocation command line was
2345123451

2345223452
CONFIG_FILES = $CONFIG_FILES
@@ -23512,7 +23512,7 @@ _ACEOF
2351223512
cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
2351323513
ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`"
2351423514
ac_cs_version="\\
23515-
opensource COBOL 4J config.status 1.1.15
23515+
opensource COBOL 4J config.status 1.1.16
2351623516
configured by $0, generated by GNU Autoconf 2.69,
2351723517
with options \\"\$ac_cs_config\\"
2351823518

configure.ac

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919

2020
AC_PREREQ(2.59)
2121

22-
AC_INIT([opensource COBOL 4J],[1.1.15],[ws-opensource-cobol-contact@osscons.jp],[opensource-cobol-4j-1.1.15])
22+
AC_INIT([opensource COBOL 4J],[1.1.16],[ws-opensource-cobol-contact@osscons.jp],[opensource-cobol-4j-1.1.16])
2323
AC_CONFIG_SRCDIR([libcobj.h])
2424
AC_CONFIG_HEADERS([config.h])
2525
AC_CONFIG_TESTDIR([tests])

doc/requirements-all.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
| version (opensource COBOL 4J) | OS | version (JDK) |
22
| -- | -- | -- |
3+
| 1.1.16 | Windows | 21 |
4+
| 1.1.16 | Ubuntu 24.04 | 21 |
5+
| 1.1.16 | AlmaLinux 9 | 11 |
6+
| 1.1.16 | Amazon Linux 2023 | 21 |
37
| 1.1.15 | Windows | 21 |
48
| 1.1.15 | Ubuntu 24.04 | 21 |
59
| 1.1.15 | AlmaLinux 9 | 11 |

libcobj/app/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ publishing {
7979
register<MavenPublication>("gpr") {
8080
groupId = "jp.osscons.opensourcecobol"
8181
artifactId = "libcobj"
82-
version = "1.1.15"
82+
version = "1.1.16"
8383
from(components["java"])
8484
}
8585
}

0 commit comments

Comments
 (0)