Skip to content

Commit f37d2c3

Browse files
v1.0.21 (#364)
* [Update]: update the version number in configure.ac * [Update]: update the version number in README.md and README_JP.md * [Update]: update the version numbers in other documents * [Update]: update CHANGELOG.md, ChangeLog and NEWS --------- Co-authored-by: Yutaro Sakamoto <[email protected]>
1 parent d75ae34 commit f37d2c3

File tree

11 files changed

+57
-31
lines changed

11 files changed

+57
-31
lines changed

CHANGELOG.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,14 @@
33
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/).
6-
6+
## [1.0.21] - 2024-03-29
7+
### Added
8+
* Implement a new option `-info-json-dir` (#362)
9+
* Fix DISPLAY/ACCEPT for environment variables (#351)
10+
* Implement a new option `-ext` (#354)
11+
* Implement a new option `-Wcall-params` (#353)
12+
### Miscellaneous
13+
* Improve the maintainability of generate Java files (#361)
714
## [1.0.20] - 2024-02-28
815
### Added
916
* Add command line options

ChangeLog

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
2024-03-29 OSS Consortium <[email protected]>
2+
3+
* opensource COBOL 4J v1.0.21 released.
4+
15
2024-02-28 OSS Consortium <[email protected]>
26

37
* opensource COBOL 4J v1.0.20 released.

NEWS

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,18 @@ NEWS - user visible changes -*- outline -*-
22

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

5+
* opensource COBOL 4J 1.0.21
6+
7+
** New Features
8+
(1) Implement a new option `-info-json-dir`
9+
(2) Fix DISPLAY/ACCEPT for environment variables
10+
(3) Implement a new option `-ext`
11+
(4) Implement a new option `-Wcall-params`
12+
** Miscellaneous
13+
(1) Improve the maintainability of generate Java files
14+
15+
-----------------------------------------------------------------------
16+
517
* opensource COBOL 4J 1.0.20
618

719
** New Features

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -53,9 +53,9 @@ dnf install -y java-21-amazon-corretto-devel gcc make bison flex automake autoco
5353

5454
### Install opensource COBOL 4J
5555
```
56-
curl -L -o opensourcecobol4j-v1.0.20.tar.gz https://github.com/opensourcecobol/opensourcecobol4j/archive/refs/tags/v1.0.20.tar.gz
57-
tar zxvf opensourcecobol4j-v1.0.20.tar.gz
58-
cd opensourcecobol4j-1.0.20
56+
curl -L -o opensourcecobol4j-v1.0.21.tar.gz https://github.com/opensourcecobol/opensourcecobol4j/archive/refs/tags/v1.0.21.tar.gz
57+
tar zxvf opensourcecobol4j-v1.0.21.tar.gz
58+
cd opensourcecobol4j-1.0.21
5959
./configure --prefix=/usr/
6060
make
6161
sudo make install
@@ -72,7 +72,7 @@ In order to check installations of older versions,
7272
The docker container for opensource COBOL 4J is available.
7373

7474
```bash
75-
docker pull opensourcecobol/opensourcecobol4j:1.0.20
75+
docker pull opensourcecobol/opensourcecobol4j:1.0.21
7676
```
7777

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

README_JP.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ opensource COBOL 4J は下記の環境でテストされています.
2323

2424
## インストール
2525

26-
opensource COBOL 4J v1.0.20はUbuntuとAlmaLinuxで動作を確認しています.
26+
opensource COBOL 4J v1.0.21はUbuntuとAlmaLinuxで動作を確認しています.
2727

2828
## 手動インストール
2929

@@ -57,9 +57,9 @@ dnf install -y java-21-amazon-corretto-devel gcc make bison flex automake autoco
5757
下記のコマンドを実行する
5858

5959
```
60-
curl -L -o opensourcecobol4j-v1.0.20.tar.gz https://github.com/opensourcecobol/opensourcecobol4j/archive/refs/tags/v1.0.20.tar.gz
61-
tar zxvf opensourcecobol4j-v1.0.20.tar.gz
62-
cd opensourcecobol4j-1.0.20
60+
curl -L -o opensourcecobol4j-v1.0.21.tar.gz https://github.com/opensourcecobol/opensourcecobol4j/archive/refs/tags/v1.0.21.tar.gz
61+
tar zxvf opensourcecobol4j-v1.0.21.tar.gz
62+
cd opensourcecobol4j-1.0.21
6363
./configure --prefix=/usr/
6464
make
6565
sudo make install
@@ -73,10 +73,10 @@ sudo make install
7373

7474
## Dockerによるインストール
7575

76-
opensource COBOL 4J v1.0.20をインストールしたDockerイメージを利用できます.
76+
opensource COBOL 4J v1.0.21をインストールしたDockerイメージを利用できます.
7777

7878
```bash
79-
docker pull opensourcecobol/opensourcecobol4j:1.0.20
79+
docker pull opensourcecobol/opensourcecobol4j:1.0.21
8080
```
8181

8282
コンテナ内で下記のコマンドを実行すると、Hello Worldプログラムをコンパイル&実行できる。

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.71 for opensource COBOL 4J 1.0.20.
3+
# Generated by GNU Autoconf 2.71 for opensource COBOL 4J 1.0.21.
44
#
55
# Report bugs to <[email protected]>.
66
#
@@ -620,9 +620,9 @@ MAKEFLAGS=
620620

621621
# Identity of this package.
622622
PACKAGE_NAME='opensource COBOL 4J'
623-
PACKAGE_TARNAME='opensource-cobol-4j-1.0.20'
624-
PACKAGE_VERSION='1.0.20'
625-
PACKAGE_STRING='opensource COBOL 4J 1.0.20'
623+
PACKAGE_TARNAME='opensource-cobol-4j-1.0.21'
624+
PACKAGE_VERSION='1.0.21'
625+
PACKAGE_STRING='opensource COBOL 4J 1.0.21'
626626
PACKAGE_BUGREPORT='[email protected]'
627627
PACKAGE_URL=''
628628

@@ -1411,7 +1411,7 @@ if test "$ac_init_help" = "long"; then
14111411
# Omit some internal or obsolete options to make the list less imposing.
14121412
# This message is too long to be a string in the A/UX 3.1 sh.
14131413
cat <<_ACEOF
1414-
\`configure' configures opensource COBOL 4J 1.0.20 to adapt to many kinds of systems.
1414+
\`configure' configures opensource COBOL 4J 1.0.21 to adapt to many kinds of systems.
14151415

14161416
Usage: $0 [OPTION]... [VAR=VALUE]...
14171417

@@ -1461,7 +1461,7 @@ Fine tuning of the installation directories:
14611461
--localedir=DIR locale-dependent data [DATAROOTDIR/locale]
14621462
--mandir=DIR man documentation [DATAROOTDIR/man]
14631463
--docdir=DIR documentation root
1464-
[DATAROOTDIR/doc/opensource-cobol-4j-1.0.20]
1464+
[DATAROOTDIR/doc/opensource-cobol-4j-1.0.21]
14651465
--htmldir=DIR html documentation [DOCDIR]
14661466
--dvidir=DIR dvi documentation [DOCDIR]
14671467
--pdfdir=DIR pdf documentation [DOCDIR]
@@ -1483,7 +1483,7 @@ fi
14831483

14841484
if test -n "$ac_init_help"; then
14851485
case $ac_init_help in
1486-
short | recursive ) echo "Configuration of opensource COBOL 4J 1.0.20:";;
1486+
short | recursive ) echo "Configuration of opensource COBOL 4J 1.0.21:";;
14871487
esac
14881488
cat <<\_ACEOF
14891489

@@ -1611,7 +1611,7 @@ fi
16111611
test -n "$ac_init_help" && exit $ac_status
16121612
if $ac_init_version; then
16131613
cat <<\_ACEOF
1614-
opensource COBOL 4J configure 1.0.20
1614+
opensource COBOL 4J configure 1.0.21
16151615
generated by GNU Autoconf 2.71
16161616

16171617
Copyright (C) 2021 Free Software Foundation, Inc.
@@ -2099,7 +2099,7 @@ cat >config.log <<_ACEOF
20992099
This file contains any messages produced by compilers while
21002100
running configure, to aid debugging if configure makes a mistake.
21012101

2102-
It was created by opensource COBOL 4J $as_me 1.0.20, which was
2102+
It was created by opensource COBOL 4J $as_me 1.0.21, which was
21032103
generated by GNU Autoconf 2.71. Invocation command line was
21042104

21052105
$ $0$ac_configure_args_raw
@@ -3397,8 +3397,8 @@ fi
33973397

33983398

33993399
# Define the identity of the package.
3400-
PACKAGE='opensource-cobol-4j-1.0.20'
3401-
VERSION='1.0.20'
3400+
PACKAGE='opensource-cobol-4j-1.0.21'
3401+
VERSION='1.0.21'
34023402

34033403

34043404
printf "%s\n" "#define PACKAGE \"$PACKAGE\"" >>confdefs.h
@@ -24216,7 +24216,7 @@ cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
2421624216
# report actual input values of CONFIG_FILES etc. instead of their
2421724217
# values after options handling.
2421824218
ac_log="
24219-
This file was extended by opensource COBOL 4J $as_me 1.0.20, which was
24219+
This file was extended by opensource COBOL 4J $as_me 1.0.21, which was
2422024220
generated by GNU Autoconf 2.71. Invocation command line was
2422124221

2422224222
CONFIG_FILES = $CONFIG_FILES
@@ -24284,7 +24284,7 @@ ac_cs_config_escaped=`printf "%s\n" "$ac_cs_config" | sed "s/^ //; s/'/'\\\\\\\\
2428424284
cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
2428524285
ac_cs_config='$ac_cs_config_escaped'
2428624286
ac_cs_version="\\
24287-
opensource COBOL 4J config.status 1.0.20
24287+
opensource COBOL 4J config.status 1.0.21
2428824288
configured by $0, generated by GNU Autoconf 2.71,
2428924289
with options \\"\$ac_cs_config\\"
2429024290

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.0.20],[[email protected]],[opensource-cobol-4j-1.0.20])
22+
AC_INIT([opensource COBOL 4J],[1.0.21],[[email protected]],[opensource-cobol-4j-1.0.21])
2323
AC_CONFIG_SRCDIR([libcobj.h])
2424
AC_CONFIG_HEADERS([config.h])
2525
AC_CONFIG_TESTDIR([tests])

doc/requirements-all.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
| version (opensource COBOL 4J) | OS | version (JDK) |
22
| -- | -- | -- |
3+
| 1.0.21 | Ubuntu 22.04 | 21 |
4+
| 1.0.21 | AlmaLinux 9 | 11 |
5+
| 1.0.21 | Amazon Linux 2023 | 21 |
36
| 1.0.20 | Ubuntu 22.04 | 21 |
47
| 1.0.20 | AlmaLinux 9 | 11 |
58
| 1.0.20 | Amazon Linux 2023 | 21 |

libcobj/app/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ publishing {
6464
register<MavenPublication>("gpr") {
6565
groupId = "jp.osscons.opensourcecobol"
6666
artifactId = "libcobj"
67-
version = "1.0.20"
67+
version = "1.0.21"
6868
from(components["java"])
6969
}
7070
}

libcobj/app/src/main/java/jp/osscons/opensourcecobol/libcobj/Const.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,5 +41,5 @@ public class Const {
4141
// TODO 標準パスの設定
4242
public static final String COB_LIBRARY_PATH = "";
4343

44-
public static final String version = "1.0.20";
44+
public static final String version = "1.0.21";
4545
}

0 commit comments

Comments
 (0)