Skip to content

Commit 886d2ed

Browse files
Release v1.1.8 (#614)
1 parent 56cd1c4 commit 886d2ed

File tree

14 files changed

+59
-43
lines changed

14 files changed

+59
-43
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,12 @@ 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.8] - 2025-03-31
8+
9+
### Fix
10+
11+
* Fix a bug of duplicate record keys of indexed files.
12+
713
## [1.1.7-hotfix1] - 2025-02-28
814

915
### Fix

ChangeLog

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

37
* opensource COBOL 4J v1.1.7-hotfix1 released.

NEWS

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

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

5+
* opensource COBOL 4J 1.1.8
6+
7+
** Bug Fixes
8+
9+
(1) Fix a bug of duplicate record keys of indexed files.
10+
11+
-----------------------------------------------------------------------
12+
513
* opensource COBOL 4J 1.1.7-hotfix1
614

715
** New Features

README.md

Lines changed: 6 additions & 6 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.7-hotfix1.tar.gz https://github.com/opensourcecobol/opensourcecobol4j/archive/refs/tags/v1.1.7-hotfix1.tar.gz
56-
tar zxvf opensourcecobol4j-v1.1.7-hotfix1.tar.gz
57-
cd opensourcecobol4j-1.1.7-hotfix1
55+
curl -L -o opensourcecobol4j-v1.1.8.tar.gz https://github.com/opensourcecobol/opensourcecobol4j/archive/refs/tags/v1.1.8.tar.gz
56+
tar zxvf opensourcecobol4j-v1.1.8.tar.gz
57+
cd opensourcecobol4j-1.1.8
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.7-hotfix1.tar.gz https://github.com/opensourcecobol/opensourcecobol4j/archive/refs/tags/v1.1.7-hotfix1.tar.gz
67-
tar zxvf opensourcecobol4j-v1.1.7-hotfix1.tar.gz
68-
cd opensourcecobol4j-1.1.7-hotfix1
66+
curl -L -o opensourcecobol4j-v1.1.8.tar.gz https://github.com/opensourcecobol/opensourcecobol4j/archive/refs/tags/v1.1.8.tar.gz
67+
tar zxvf opensourcecobol4j-v1.1.8.tar.gz
68+
cd opensourcecobol4j-1.1.8
6969
./configure --prefix=/usr/ --enable-utf8
7070
touch cobj/*.m4
7171
make

README_JP.md

Lines changed: 6 additions & 6 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.7-hotfix1.tar.gz https://github.com/opensourcecobol/opensourcecobol4j/archive/refs/tags/v1.1.7-hotfix1.tar.gz
50-
tar zxvf opensourcecobol4j-v1.1.7-hotfix1.tar.gz
51-
cd opensourcecobol4j-1.1.7-hotfix1
49+
curl -L -o opensourcecobol4j-v1.1.8.tar.gz https://github.com/opensourcecobol/opensourcecobol4j/archive/refs/tags/v1.1.8.tar.gz
50+
tar zxvf opensourcecobol4j-v1.1.8.tar.gz
51+
cd opensourcecobol4j-1.1.8
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.7-hotfix1.tar.gz https://github.com/opensourcecobol/opensourcecobol4j/archive/refs/tags/v1.1.7-hotfix1.tar.gz
61-
tar zxvf opensourcecobol4j-v1.1.7-hotfix1.tar.gz
62-
cd opensourcecobol4j-1.1.7-hotfix1
60+
curl -L -o opensourcecobol4j-v1.1.8.tar.gz https://github.com/opensourcecobol/opensourcecobol4j/archive/refs/tags/v1.1.8.tar.gz
61+
tar zxvf opensourcecobol4j-v1.1.8.tar.gz
62+
cd opensourcecobol4j-1.1.8
6363
./configure --prefix=/usr/ --enable-utf8
6464
touch cobj/*.m4
6565
make

ReleaseNote.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
11
### Fix
22

3-
* Fix bugs related to UTF-8
4-
* With older versions, DISPLAY statements output invalid UTF-8 data when the arguments are sub items of group fields.
5-
* With older versions, initilizing data with VALUE clauses fails in some cases.
3+
* Fix a bug of duplicate record keys of indexed files

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.7-hotfix1.
3+
# Generated by GNU Autoconf 2.69 for opensource COBOL 4J 1.1.8.
44
#
55
# Report bugs to <[email protected]>.
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.7-hotfix1'
593-
PACKAGE_VERSION='1.1.7-hotfix1'
594-
PACKAGE_STRING='opensource COBOL 4J 1.1.7-hotfix1'
592+
PACKAGE_TARNAME='opensource-cobol-4j-1.1.8'
593+
PACKAGE_VERSION='1.1.8'
594+
PACKAGE_STRING='opensource COBOL 4J 1.1.8'
595595
PACKAGE_BUGREPORT='[email protected]'
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.7-hotfix1 to adapt to many kinds of systems.
1385+
\`configure' configures opensource COBOL 4J 1.1.8 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.7-hotfix1]
1435+
[DATAROOTDIR/doc/opensource-cobol-4j-1.1.8]
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.7-hotfix1:";;
1457+
short | recursive ) echo "Configuration of opensource COBOL 4J 1.1.8:";;
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.7-hotfix1
1584+
opensource COBOL 4J configure 1.1.8
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.7-hotfix1, which was
2136+
It was created by opensource COBOL 4J $as_me 1.1.8, 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.7-hotfix1'
3028-
VERSION='1.1.7-hotfix1'
3027+
PACKAGE='opensource-cobol-4j-1.1.8'
3028+
VERSION='1.1.8'
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.7-hotfix1, which was
23449+
This file was extended by opensource COBOL 4J $as_me 1.1.8, 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.7-hotfix1
23515+
opensource COBOL 4J config.status 1.1.8
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.7-hotfix1],[[email protected]],[opensource-cobol-4j-1.1.7-hotfix1])
22+
AC_INIT([opensource COBOL 4J],[1.1.8],[[email protected]],[opensource-cobol-4j-1.1.8])
2323
AC_CONFIG_SRCDIR([libcobj.h])
2424
AC_CONFIG_HEADERS([config.h])
2525
AC_CONFIG_TESTDIR([tests])

libcobj/app/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ publishing {
8080
register<MavenPublication>("gpr") {
8181
groupId = "jp.osscons.opensourcecobol"
8282
artifactId = "libcobj"
83-
version = "1.1.7-hotfix1"
83+
version = "1.1.8"
8484
from(components["java"])
8585
}
8686
}

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
@@ -23,5 +23,5 @@
2323
public class Const {
2424

2525
/** TODO: 準備中 */
26-
public static final String version = "1.1.7-hotfix1";
26+
public static final String version = "1.1.8";
2727
}

0 commit comments

Comments
 (0)