Skip to content

Commit 70f5292

Browse files
Release 1.1.18 (#792)
* release: 1.1.18 * chore: run autoreconf
1 parent 650d08c commit 70f5292

25 files changed

Lines changed: 5252 additions & 4012 deletions

File tree

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,18 @@ 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.18] - 2026-02-27
8+
9+
### Fixed
10+
11+
- Fix a bug where full-width hyphens (ー) in SECTION names were not correctly converted to full-width underscores (_) in generated Java code. (#788)
12+
- Fix bugs in Java code generation for VALUE ALL literal initialization. (#790)
13+
14+
### Documentation
15+
16+
- Add documentation for environment variables referenced by the runtime. (#762)
17+
- see doc/environment_variables.md or doc/environment_variables_JP.md
18+
719
## [1.1.17] - 2026-01-28
820

921
### Improvements

ChangeLog

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

37
* opensource COBOL 4J v1.1.17 released.

Makefile.in

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -219,7 +219,7 @@ DIST_SUBDIRS = $(SUBDIRS)
219219
am__DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/config.h.in \
220220
ABOUT-NLS AUTHORS COPYING COPYING.LIB ChangeLog INSTALL NEWS \
221221
README TODO compile config.guess config.rpath config.sub \
222-
install-sh ltmain.sh missing mkinstalldirs
222+
depcomp install-sh ltmain.sh missing mkinstalldirs
223223
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
224224
top_distdir = $(distdir)
225225
am__remove_distdir = \
@@ -313,14 +313,17 @@ ETAGS = @ETAGS@
313313
EXEEXT = @EXEEXT@
314314
FGREP = @FGREP@
315315
FILECMD = @FILECMD@
316+
GETTEXT_MACRO_VERSION = @GETTEXT_MACRO_VERSION@
316317
GMSGFMT = @GMSGFMT@
318+
GMSGFMT_015 = @GMSGFMT_015@
317319
GREP = @GREP@
318320
INSTALL = @INSTALL@
319321
INSTALL_DATA = @INSTALL_DATA@
320322
INSTALL_PROGRAM = @INSTALL_PROGRAM@
321323
INSTALL_SCRIPT = @INSTALL_SCRIPT@
322324
INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
323325
INTLLIBS = @INTLLIBS@
326+
INTL_MACOSX_LIBS = @INTL_MACOSX_LIBS@
324327
LD = @LD@
325328
LDFLAGS = @LDFLAGS@
326329
LIBCOB_CFLAGS = @LIBCOB_CFLAGS@
@@ -340,9 +343,9 @@ MAINT = @MAINT@
340343
MAKEINFO = @MAKEINFO@
341344
MANIFEST_TOOL = @MANIFEST_TOOL@
342345
MKDIR_P = @MKDIR_P@
343-
MKINSTALLDIRS = @MKINSTALLDIRS@
344346
MSGFMT = @MSGFMT@
345347
MSGMERGE = @MSGMERGE@
348+
MSGMERGE_FOR_MSGFMT_OPTION = @MSGMERGE_FOR_MSGFMT_OPTION@
346349
NM = @NM@
347350
NMEDIT = @NMEDIT@
348351
OBJDUMP = @OBJDUMP@
@@ -366,6 +369,8 @@ STRIP = @STRIP@
366369
USE_NLS = @USE_NLS@
367370
VERSION = @VERSION@
368371
XGETTEXT = @XGETTEXT@
372+
XGETTEXT_015 = @XGETTEXT_015@
373+
XGETTEXT_EXTRA_OPTIONS = @XGETTEXT_EXTRA_OPTIONS@
369374
abs_builddir = @abs_builddir@
370375
abs_srcdir = @abs_srcdir@
371376
abs_top_builddir = @abs_top_builddir@

NEWS

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

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

5+
* opensource COBOL 4J 1.1.18
6+
7+
** Bug Fixes
8+
9+
(1) Fix a bug where full-width hyphens (ー) in SECTION names were not correctly converted to full-width underscores (_) in generated Java code.
10+
(2) Fix bugs in Java code generation for VALUE ALL literal initialization.
11+
12+
** Documentation
13+
14+
(1) Add documentation for environment variables referenced by the runtime.
15+
* see doc/environment_variables.md or doc/environment_variables_JP.md
16+
17+
-----------------------------------------------------------------------
18+
519
* opensource COBOL 4J 1.1.17
620

721
** Improvements

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.17.tar.gz https://github.com/opensourcecobol/opensourcecobol4j/archive/refs/tags/v1.1.17.tar.gz
56-
tar zxvf opensourcecobol4j-v1.1.17.tar.gz
57-
cd opensourcecobol4j-1.1.17
55+
curl -L -o opensourcecobol4j-v1.1.18.tar.gz https://github.com/opensourcecobol/opensourcecobol4j/archive/refs/tags/v1.1.18.tar.gz
56+
tar zxvf opensourcecobol4j-v1.1.18.tar.gz
57+
cd opensourcecobol4j-1.1.18
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.17.tar.gz https://github.com/opensourcecobol/opensourcecobol4j/archive/refs/tags/v1.1.17.tar.gz
67-
tar zxvf opensourcecobol4j-v1.1.17.tar.gz
68-
cd opensourcecobol4j-1.1.17
66+
curl -L -o opensourcecobol4j-v1.1.18.tar.gz https://github.com/opensourcecobol/opensourcecobol4j/archive/refs/tags/v1.1.18.tar.gz
67+
tar zxvf opensourcecobol4j-v1.1.18.tar.gz
68+
cd opensourcecobol4j-1.1.18
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:20260128
140+
docker pull opensourcecobol/opensourcecobol4j:20260227
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.17.tar.gz https://github.com/opensourcecobol/opensourcecobol4j/archive/refs/tags/v1.1.17.tar.gz
50-
tar zxvf opensourcecobol4j-v1.1.17.tar.gz
51-
cd opensourcecobol4j-1.1.17
49+
curl -L -o opensourcecobol4j-v1.1.18.tar.gz https://github.com/opensourcecobol/opensourcecobol4j/archive/refs/tags/v1.1.18.tar.gz
50+
tar zxvf opensourcecobol4j-v1.1.18.tar.gz
51+
cd opensourcecobol4j-1.1.18
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.17.tar.gz https://github.com/opensourcecobol/opensourcecobol4j/archive/refs/tags/v1.1.17.tar.gz
61-
tar zxvf opensourcecobol4j-v1.1.17.tar.gz
62-
cd opensourcecobol4j-1.1.17
60+
curl -L -o opensourcecobol4j-v1.1.18.tar.gz https://github.com/opensourcecobol/opensourcecobol4j/archive/refs/tags/v1.1.18.tar.gz
61+
tar zxvf opensourcecobol4j-v1.1.18.tar.gz
62+
cd opensourcecobol4j-1.1.18
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:20260128
129+
docker pull opensourcecobol/opensourcecobol4j:20260227
130130
```
131131

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

ReleaseNote.md

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1-
### Improvements
1+
### Fixed
22

3-
- Optimized compilation time for multiple input files (30x faster for batch compilation) (#777)
3+
* Fix a bug where full-width hyphens (ー) in SECTION names were not correctly converted to full-width underscores (_) in generated Java code. (#788)
4+
* Fix bugs in Java code generation for VALUE ALL literal initialization. (#790)
5+
6+
### Documentation
7+
8+
* Add documentation for environment variables referenced by the runtime. (#762)
9+
* see doc/environment_variables.md or doc/environment_variables_JP.md

0 commit comments

Comments
 (0)