Skip to content

Commit

Permalink
Release 19.10
Browse files Browse the repository at this point in the history
  • Loading branch information
ebezault committed Oct 3, 2019
1 parent ef6603c commit e61cedc
Show file tree
Hide file tree
Showing 16 changed files with 25 additions and 22 deletions.
9 changes: 6 additions & 3 deletions History.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Release History

## Version ?? - ??
## Version 19.10.03.1 - 03 October 2019

### gelex

Expand All @@ -13,10 +13,12 @@
option `utf8` Unicode characters are internally converted to their UTF-8
byte sequence in the generated scanner. This can be useful when the file
to scan is already encoded with UTF-8, although the generated scanner will
be larger.
be larger and not necessarily faster.
* Added support for addition and subtraction of character classes.
* Fixed bug when an Eiffel verbatim string in a semantic action contains a
closing brace `}`, which was wrongly interpreted as the end of the
Eiffel code for this semantic action.
* Updated the documentation.

### geyacc

Expand All @@ -28,6 +30,7 @@
* Fixed bug when an Eiffel verbatim string in a semantic action contains a
closing brace `}`, which was wrongly interpreted as the end of the
Eiffel code for this semantic action.
* Updated the documentation.

### Gobo Eiffel Kernel Library

Expand Down Expand Up @@ -61,7 +64,7 @@
string (`STRING_32`) or with their escaped form (e.g. `\u{03B2}` or
`\x{03B2}` where `03B2` is the hexadecimal code for Greek character beta).
Surrogate and invalid Unicode characters produce a regular expression
syntax error.
syntax error.

### Gobo Eiffel Tools Library

Expand Down
4 changes: 2 additions & 2 deletions Readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,8 +56,8 @@ library classes provided in this package.

The supported Eiffel compilers, in alphabetical order, are:

* Gobo Eiffel Compiler (gec) 19.06.21.1
* ISE Eiffel 19.05.10.3187 (Classic and .NET)
* Gobo Eiffel Compiler (gec) 19.10.03.1
* ISE Eiffel 19.05.10.3187 and 19.08.10.3505 (Classic and .NET)

For more details about the supported Eiffel compilers, please see the file
[Release_notes.md](./Release_notes.md).
Expand Down
4 changes: 2 additions & 2 deletions Release_notes.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
# Release notes - Gobo Eiffel 19.06.21.1
# Release notes - Gobo Eiffel 19.10.03.1

In order to see what is new in this release, please read [History.md](./History.md).

## Compiler specific notes

### ISE 19.05.10.3187 (ISE Eiffel)
### ISE 19.05.10.3187 and 19.08.10.3505 (ISE Eiffel)

* The ECF files for ISE Eiffel provided in this package are for
Eiffel classic. In order to get ECF files configured for Eiffel
Expand Down
6 changes: 3 additions & 3 deletions library/common/doc/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -104,8 +104,8 @@
</p>

<ul>
<li>Gobo Eiffel Compiler (gec) 19.06.21.1</li>
<li>ISE Eiffel 19.05.10.3187 (Classic and .NET)</li>
<li>Gobo Eiffel Compiler (gec) 19.10.03.1</li>
<li>ISE Eiffel 19.05.10.3187 and 19.08.10.3505 (Classic and .NET)</li>
</ul>

<p>
Expand Down Expand Up @@ -230,7 +230,7 @@ <h2>Download</h2>
<strong>http:</strong></font><a
href="http://www.gobosoft.com"><font size="2">//www.gobosoft.com</font></a><font
size="2"><br>
<strong>Last Updated:</strong> 21 June 2019</font><br>
<strong>Last Updated:</strong> 3 October 2019</font><br>
<!--webbot bot="PurpleText"
preview="
$Date$
Expand Down
2 changes: 1 addition & 1 deletion library/kernel/src/misc/kl_gobo_version.e
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ class KL_GOBO_VERSION

feature -- Constants

Version_number: STRING = "19.06.21.1"
Version_number: STRING = "19.10.03.1"
-- Version number.
-- Format: year.month.day.number_of_commits_on_that_day

Expand Down
2 changes: 1 addition & 1 deletion library/lexical/src/lex/lx_lex_tokens.e
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
note

description: "Parser token codes"
generator: "geyacc version 19.06.21.1"
generator: "geyacc version 19.10.03.1"

deferred class LX_LEX_TOKENS

Expand Down
2 changes: 1 addition & 1 deletion library/lexical/src/regexp/lx_regexp_tokens.e
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
note

description: "Parser token codes"
generator: "geyacc version 19.06.21.1"
generator: "geyacc version 19.10.03.1"

deferred class LX_REGEXP_TOKENS

Expand Down
2 changes: 1 addition & 1 deletion library/lexical/src/regexp/lx_wildcard_tokens.e
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
note

description: "Parser token codes"
generator: "geyacc version 19.06.21.1"
generator: "geyacc version 19.10.03.1"

deferred class LX_WILDCARD_TOKENS

Expand Down
2 changes: 1 addition & 1 deletion library/parse/example/eiffel_parser/eiffel_tokens.e
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
note

description: "Parser token codes"
generator: "geyacc version 19.06.21.1"
generator: "geyacc version 19.10.03.1"

deferred class EIFFEL_TOKENS

Expand Down
2 changes: 1 addition & 1 deletion library/parse/src/yacc/pr_yacc_tokens.e
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
note

description: "Parser token codes"
generator: "geyacc version 19.06.21.1"
generator: "geyacc version 19.10.03.1"

deferred class PR_YACC_TOKENS

Expand Down
2 changes: 1 addition & 1 deletion library/test/src/generation/ts_config_tokens.e
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
note

description: "Parser token codes"
generator: "geyacc version 19.06.21.1"
generator: "geyacc version 19.10.03.1"

deferred class TS_CONFIG_TOKENS

Expand Down
2 changes: 1 addition & 1 deletion library/tools/src/eiffel/parser/et_eiffel_tokens.e
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
note

description: "Parser token codes"
generator: "geyacc version 19.06.21.1"
generator: "geyacc version 19.10.03.1"

deferred class ET_EIFFEL_TOKENS

Expand Down
2 changes: 1 addition & 1 deletion library/tools/src/lace/parser/et_lace_tokens.e
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
note

description: "Parser token codes"
generator: "geyacc version 19.06.21.1"
generator: "geyacc version 19.10.03.1"

deferred class ET_LACE_TOKENS

Expand Down
2 changes: 1 addition & 1 deletion library/utility/src/config/ut_config_tokens.e
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
note

description: "Parser token codes"
generator: "geyacc version 19.06.21.1"
generator: "geyacc version 19.10.03.1"

deferred class UT_CONFIG_TOKENS

Expand Down
2 changes: 1 addition & 1 deletion library/xml/src/parser/eiffel/xm_eiffel_tokens.e
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
note

description: "Parser token codes"
generator: "geyacc version 19.06.21.1"
generator: "geyacc version 19.10.03.1"

deferred class XM_EIFFEL_TOKENS

Expand Down
2 changes: 1 addition & 1 deletion tool/gepp/src/gepp_tokens.e
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
note

description: "Parser token codes"
generator: "geyacc version 19.06.21.1"
generator: "geyacc version 19.10.03.1"

deferred class GEPP_TOKENS

Expand Down

0 comments on commit e61cedc

Please sign in to comment.