racc 1.7.1-java → 1.7.3-java

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 5e1f787053b9d2ca9e1af8423b23fa20e23b3680906b312d70e83e5e1afb62c0
4
- data.tar.gz: ea654c9c32f3af816b2732bb3363a68621727fa14e2061a46508f0fac2a34b6a
3
+ metadata.gz: c94aa0b9f7a7e15c7b1013f85450b9da417898183db609f1ae477d447bc8a87b
4
+ data.tar.gz: ebb5c4d587a4615c07f892e4681c6bc63554d3af6501d2bd22fac8b052d6a91c
5
5
  SHA512:
6
- metadata.gz: 349ead791d4de3a0c2f74af4bb43bb1663b0b3196fa76e511d33a9bfe18f1706803aa2aaf972a2fa1f56ea70a2662d45c4f2765997500be882302bf99bb51b24
7
- data.tar.gz: e5ddb322e8bb9dc2ec4920e8c2852195f81a4ea37d5d0255ae87269de68eb1108b25e86facf67bd3f738648e3320c99184836dd2b3b8251b3e21709677089ea6
6
+ metadata.gz: 52da64cac58e37e2244590b3410fcd301a7207f50c0e4b9c8dcbb1b5393d269cacc6fc2e5a682b53f1811fbe5dfd99529684318e6be901ffdc3119c162a46ab3
7
+ data.tar.gz: eea0197fb11f67526e59a1de85dd57683318fce129adbc3fc1fc764d73683f33c081021b851eff933ff4383c262d3d8b0739b7689097028131973b312c624820
data/README.ja.rdoc CHANGED
@@ -25,34 +25,6 @@
25
25
 
26
26
  $ gem install racc
27
27
 
28
- setup.rb インストル:
29
-
30
- パッケージのトップディレクトリで次のように入力してください。
31
- ($ は通常ユーザ、# はルートのプロンプトです)
32
-
33
- $ ruby setup.rb config
34
- $ ruby setup.rb setup
35
- ($ su)
36
- # ruby setup.rb install
37
-
38
- これで通常のパスに Racc がインストールされます。自分の好き
39
- なディレクトリにインストールしたいときは、setup.rb config に
40
- 各種オプションをつけて実行してください。オプションのリストは
41
-
42
- $ ruby setup.rb --help
43
-
44
- で見られます。
45
-
46
-
47
- コンパイラがない場合
48
- --------------------
49
-
50
- config を以下のようにすれば、拡張モジュールなしで
51
- インストールできます。
52
-
53
- $ ruby setup.rb config --without-ext
54
-
55
-
56
28
  == テスト
57
29
 
58
30
  sample/ 以下にいくつか Racc の文法ファイルのサンプルが用意
data/README.rdoc CHANGED
@@ -17,32 +17,6 @@
17
17
 
18
18
  $ gem install racc
19
19
 
20
- setup.rb install:
21
-
22
- Type this in the top directory of the extracted archive:
23
-
24
- $ ruby setup.rb config
25
- $ ruby setup.rb setup
26
- ($ su)
27
- # ruby setup.rb install
28
-
29
- You can install Racc into your favorite directory by giving
30
- options to setup.rb. e.g.
31
-
32
- $ ruby setup.rb config --prefix=/usr
33
-
34
- For details, try "ruby setup.rb --help".
35
-
36
-
37
- If you don't have C Compiler
38
- ----------------------------
39
-
40
- You can install Racc without C compilers. Type following
41
- command in config phase.
42
-
43
- $ ruby setup.rb config --without-ext
44
-
45
-
46
20
  == Testing Racc
47
21
 
48
22
  Racc comes with simple calculator. To compile this, on shell:
@@ -57,6 +31,13 @@
57
31
  For details of Racc, see HTML documents placed under 'doc/en/'
58
32
  and sample grammar files under 'sample/'.
59
33
 
34
+ == Release flow
35
+
36
+ * Update VERSION number of these files
37
+ * <code>RACC_VERSION</code> in "ext/racc/com/headius/racc/Cparse.java"
38
+ * <code>VERSION</code> in "lib/racc/info.rb"
39
+ * Release as a gem by <code>rake release</code> with CRuby and JRuby because Racc gem provides 2 packages
40
+ * Create new release on {GitHub}[https://github.com/ruby/racc/releases]
60
41
 
61
42
  == License
62
43
 
data/TODO CHANGED
@@ -1,5 +1,5 @@
1
1
  * check 'error' token handling.
2
2
  * interactive transition table monitor.
3
3
  * support backtracking.
4
- * output Ruby extention library?
4
+ * output Ruby extension library?
5
5
  * LL(k)? (But it should not be called Racc)
data/bin/racc CHANGED
@@ -19,6 +19,7 @@ def main
19
19
  make_executable = false
20
20
  rubypath = nil
21
21
  embed_runtime = false
22
+ frozen_strings = false
22
23
  debug_flags = Racc::DebugFlags.new
23
24
  line_convert = true
24
25
  line_convert_all = false
@@ -57,6 +58,9 @@ def main
57
58
  parser.on('-E', '--embedded', "Embeds Racc runtime in output.") {
58
59
  embed_runtime = true
59
60
  }
61
+ parser.on('-F', '--frozen', "Add frozen_string_literals: true.") {
62
+ frozen_strings = true
63
+ }
60
64
  parser.on('--line-convert-all', 'Converts line numbers of user codes.') {
61
65
  line_convert_all = true
62
66
  }
@@ -150,6 +154,7 @@ def main
150
154
 
151
155
  $stderr.puts 'Creating parser file...' if verbose
152
156
  params = result.params.dup
157
+ params.filename = File.basename(input)
153
158
  # Overwrites parameters given by a grammar file with command line options.
154
159
  params.superclass = superclass if superclass
155
160
  params.omit_action_call = true if omit_action_call
@@ -162,6 +167,7 @@ def main
162
167
  params.convert_line = line_convert
163
168
  params.convert_line_all = line_convert_all
164
169
  params.embed_runtime = embed_runtime
170
+ params.frozen_strings = frozen_strings
165
171
  profiler.section('generation') {
166
172
  generator = Racc::ParserFileGenerator.new(states, params)
167
173
  generator.generate_parser_file(output || make_filename(input, '.tab.rb'))
@@ -131,8 +131,8 @@ Racc supports Bison's "expect" directive to declare the expected
131
131
  number of shift/reduce conflicts.
132
132
  --
133
133
  class MyParser
134
- rule
135
134
  expect 3
135
+ rule
136
136
  :
137
137
  :
138
138
  --
@@ -127,8 +127,8 @@ Racc has bison's "expect" directive.
127
127
  # Example
128
128
 
129
129
  class MyParser
130
- rule
131
130
  expect 3
131
+ rule
132
132
  :
133
133
  :
134
134
 
@@ -6,6 +6,7 @@ racc [-o<var>filename</var>] [--output-file=<var>filename</var>]
6
6
  [-O<var>filename</var>] [--log-file=<var>filename</var>]
7
7
  [-g] [--debug]
8
8
  [-E] [--embedded]
9
+ [-F] [--frozen]
9
10
  [-l] [--no-line-convert]
10
11
  [-c] [--line-convert-all]
11
12
  [-a] [--no-omit-actions]
@@ -50,6 +51,10 @@ Ruby のパスを使用します。
50
51
  ランタイムルーチンをすべて含んだコードを生成します。
51
52
  つまり、このオプションをつけて生成したコードは Ruby さえあれば動きます。
52
53
  </dd>
54
+ <dt>-F, --frozen
55
+ <dd>
56
+ Add frozen_string_literals: true.
57
+ </dd>
53
58
  <dt>-C, --check-only
54
59
  <dd>
55
60
  (文法ファイルの) 文法のチェックだけをして終了します。
@@ -173,7 +173,7 @@ target: TERM_A nonterm_a TERM_B nonterm_b
173
173
  --
174
174
  prechigh
175
175
  nonassoc PLUSPLUS
176
- left MULTI DEVIDE
176
+ left MULTI DIVIDE
177
177
  left PLUS MINUS
178
178
  right '='
179
179
  preclow
@@ -96,7 +96,7 @@ Object
96
96
  このメソッドから正常に戻った場合、パーサはエラー回復モード
97
97
  に移行します。
98
98
 
99
- error_token はパースエラーを起こした記号の内部表現 (整数) です。
99
+ error_token_id はパースエラーを起こした記号の内部表現 (整数) です。
100
100
  #token_to_str で文法ファイル上の文字列表現に直せます。
101
101
 
102
102
  error_value はその値です。
Binary file
data/lib/racc/info.rb CHANGED
@@ -1,3 +1,4 @@
1
+ # frozen_string_literal: true
1
2
  #--
2
3
  #
3
4
  #
@@ -11,7 +12,7 @@
11
12
  #++
12
13
 
13
14
  module Racc
14
- VERSION = '1.7.1'
15
+ VERSION = '1.7.3'
15
16
  Version = VERSION
16
17
  Copyright = 'Copyright (c) 1999-2006 Minero Aoki'
17
18
  end
@@ -1,6 +1,5 @@
1
1
  module Racc
2
2
  PARSER_TEXT = <<'__end_of_file__'
3
- # frozen_string_literal: false
4
3
  #--
5
4
  # Copyright (c) 1999-2006 Minero Aoki
6
5
  #
@@ -14,20 +13,9 @@ module Racc
14
13
 
15
14
  unless $".find {|p| p.end_with?('/racc/info.rb')}
16
15
  $".push "#{__dir__}/racc/info.rb"
17
- #--
18
- #
19
- #
20
- #
21
- # Copyright (c) 1999-2006 Minero Aoki
22
- #
23
- # This program is free software.
24
- # You can distribute/modify this program under the same terms of ruby.
25
- # see the file "COPYING".
26
- #
27
- #++
28
16
 
29
17
  module Racc
30
- VERSION = '1.7.1'
18
+ VERSION = '1.7.3'
31
19
  Version = VERSION
32
20
  Copyright = 'Copyright (c) 1999-2006 Minero Aoki'
33
21
  end
@@ -76,10 +64,12 @@ end
76
64
  # [-v, --verbose]
77
65
  # verbose mode. create +filename+.output file, like yacc's y.output file.
78
66
  # [-g, --debug]
79
- # add debug code to parser class. To display debuggin information,
67
+ # add debug code to parser class. To display debugging information,
80
68
  # use this '-g' option and set @yydebug true in parser class.
81
69
  # [-E, --embedded]
82
70
  # Output parser which doesn't need runtime files (racc/parser.rb).
71
+ # [-F, --frozen]
72
+ # Output parser which declares frozen_string_literals: true
83
73
  # [-C, --check-only]
84
74
  # Check syntax of racc grammar file and quit.
85
75
  # [-S, --output-status]
@@ -558,7 +548,7 @@ module Racc
558
548
  #
559
549
  # If this method returns, parsers enter "error recovering mode".
560
550
  def on_error(t, val, vstack)
561
- raise ParseError, sprintf("\nparse error on value %s (%s)",
551
+ raise ParseError, sprintf("parse error on value %s (%s)",
562
552
  val.inspect, token_to_str(t) || '?')
563
553
  end
564
554
 
data/lib/racc/parser.rb CHANGED
@@ -1,4 +1,4 @@
1
- # frozen_string_literal: false
1
+ # frozen_string_literal: true
2
2
  #--
3
3
  # Copyright (c) 1999-2006 Minero Aoki
4
4
  #
@@ -53,10 +53,12 @@ end
53
53
  # [-v, --verbose]
54
54
  # verbose mode. create +filename+.output file, like yacc's y.output file.
55
55
  # [-g, --debug]
56
- # add debug code to parser class. To display debuggin information,
56
+ # add debug code to parser class. To display debugging information,
57
57
  # use this '-g' option and set @yydebug true in parser class.
58
58
  # [-E, --embedded]
59
59
  # Output parser which doesn't need runtime files (racc/parser.rb).
60
+ # [-F, --frozen]
61
+ # Output parser which declares frozen_string_literals: true
60
62
  # [-C, --check-only]
61
63
  # Check syntax of racc grammar file and quit.
62
64
  # [-S, --output-status]
@@ -535,7 +537,7 @@ module Racc
535
537
  #
536
538
  # If this method returns, parsers enter "error recovering mode".
537
539
  def on_error(t, val, vstack)
538
- raise ParseError, sprintf("\nparse error on value %s (%s)",
540
+ raise ParseError, sprintf("parse error on value %s (%s)",
539
541
  val.inspect, token_to_str(t) || '?')
540
542
  end
541
543
 
@@ -45,6 +45,7 @@ module Racc
45
45
  bool_attr :convert_line
46
46
  bool_attr :convert_line_all
47
47
  bool_attr :embed_runtime
48
+ bool_attr :frozen_strings
48
49
  bool_attr :make_executable
49
50
  attr_accessor :interpreter
50
51
 
@@ -64,6 +65,7 @@ module Racc
64
65
  self.convert_line = true
65
66
  self.convert_line_all = false
66
67
  self.embed_runtime = false
68
+ self.frozen_strings = false
67
69
  self.make_executable = false
68
70
  self.interpreter = nil
69
71
  end
@@ -122,6 +124,7 @@ module Racc
122
124
  end
123
125
 
124
126
  def notice
127
+ line %q[# frozen_string_literal: true] if @params.frozen_strings?
125
128
  line %q[#]
126
129
  line %q[# DO NOT MODIFY!!!!]
127
130
  line %Q[# This file is automatically generated by Racc #{Racc::Version}]
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: racc
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.7.1
4
+ version: 1.7.3
5
5
  platform: java
6
6
  authors:
7
7
  - Minero Aoki
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2023-06-14 00:00:00.000000000 Z
12
+ date: 2023-11-04 00:00:00.000000000 Z
13
13
  dependencies: []
14
14
  description: |
15
15
  Racc is a LALR(1) parser generator.
@@ -34,22 +34,17 @@ files:
34
34
  - README.rdoc
35
35
  - TODO
36
36
  - bin/racc
37
- - doc/en/NEWS.en.rdoc
38
37
  - doc/en/grammar.en.rdoc
39
38
  - doc/en/grammar2.en.rdoc
40
- - doc/ja/NEWS.ja.rdoc
41
39
  - doc/ja/command.ja.html
42
40
  - doc/ja/debug.ja.rdoc
43
41
  - doc/ja/grammar.ja.rdoc
44
42
  - doc/ja/index.ja.html
45
43
  - doc/ja/parser.ja.rdoc
46
44
  - doc/ja/usage.ja.html
47
- - ext/racc/MANIFEST
48
- - ext/racc/cparse/cparse.c
49
- - ext/racc/cparse/extconf.rb
45
+ - lib/java/racc/cparse-jruby.jar
50
46
  - lib/racc.rb
51
47
  - lib/racc/compat.rb
52
- - lib/racc/cparse-jruby.jar
53
48
  - lib/racc/debugflags.rb
54
49
  - lib/racc/exception.rb
55
50
  - lib/racc/grammar.rb
data/doc/en/NEWS.en.rdoc DELETED
@@ -1,282 +0,0 @@
1
- = NEWS
2
-
3
- === 1.4.6
4
-
5
- * Bugfixes
6
-
7
- * bin/racc -g option renamed to -t
8
- * racc/compiler.rb is removed
9
- * '|' is allowed with meta rules
10
- * Ruby 1.8.7 compatibility fixes
11
- * Ruby 1.9 compatibility fixes
12
-
13
- === 1.4.5 (2005-11-21)
14
- * [FEATURE CHANGE] --no-extensions option was removed.
15
- * [fix] racc command should not depend on `raccrt' package.
16
- * [fix] --no-omit-actions did not work.
17
- * setup.rb 3.4.1.
18
-
19
- === 1.4.4 (2003-10-12)
20
- * document changed.
21
- * -all packages does not include amstd and strscan.
22
- * setup.rb 3.2.1.
23
-
24
- === 1.4.3 (2002-11-14)
25
- * [fix] reduce ruby 1.8 warnings.
26
-
27
- === 1.4.2 (2002-01-29)
28
- * [new] new option --no-extentions
29
-
30
- === 1.4.1 (2001-12-02)
31
- * now Racc does not depend on amstd library.
32
- * update y2racc and racc2y for racc 1.4.1
33
-
34
- === 1.4.0 (2001-11-30)
35
- * minor version up for checking in runtime library into ruby CVS repositry.
36
- * RaccParser, RaccScanner -&gt; GrammarFileParser, GrammarFileScanner
37
- * modify typo (grammer -&gt; grammar)
38
-
39
- === 1.3.12 (2001-11-22)
40
- * modify installer bug (thanks Tanaka Akira)
41
- * enhance regexp/%-strings/gvar detection in action block
42
-
43
- === 1.3.11 (2001-08-28)
44
- * modify scan error on $' $` $/ etc.
45
-
46
- === 1.3.10 (2001-08-12)
47
- * modify prototype missmatch in cparse.c
48
-
49
- === 1.3.9 (2001-04-07)
50
- * support Ruby 1.4 again.
51
-
52
- === 1.3.8 (2001-03-17)
53
- * output symbol name when error
54
- * Racc::Parser#token_to_str
55
-
56
- === 1.3.7 (2001-02-04)
57
- * allow nil for EndOfInput (experimental)
58
- * more sample grammar files
59
-
60
- === 1.3.6 (2001-01-22)
61
- * modify cparse.so for static link
62
-
63
- === 1.3.5 (2001-01-18)
64
- * %-string scanning was wrong
65
- * new directive "expect"
66
-
67
- === 1.3.4 (2001-01-11)
68
- * cparse: add type checks
69
- * cparse: rm depend
70
- * cparse: does not pass non-VALUE object to rb_iterate()
71
-
72
- === 1.3.3 (2000-12-25)
73
- * <em>critical bug</em> in generator (from 1.3.1)
74
- * racc --runtime-version
75
-
76
- === 1.3.2 (2000-12-21)
77
- * bug with racc -E
78
- * package strscan togather (again)
79
-
80
- === 1.3.1 (2000-12-17)
81
- * dynamically determine RE_DUP_MAX
82
- * ruby version routine was used always
83
-
84
- === 1.3.0 (2000-11-30)
85
- * can yield(sym,val) from scanner (Parser#yyparse)
86
-
87
- === 1.2.6 (2000-11-28)
88
- * class M::C
89
-
90
- === 1.2.5 (2000-11-20)
91
- * big changes in option; -h -f -p -i -n -c -A are incompatible
92
- * support long options
93
- * y2racc, racc2y leaves actions as default
94
-
95
- === 1.2.4 (2000-09-13)
96
- * updates installer and documents
97
-
98
- === 1.2.3 (2000-08-14)
99
- * output useless rules and nonterminals (version 2)
100
- * nonassoc makes error (never shift/reduce)
101
-
102
- === 1.2.2 (2000-08-12)
103
- * internal changes
104
-
105
- === 1.2.1 (2000-08-05)
106
- * racc2y, y2racc
107
-
108
- === 1.2.0 (2000-08-02)
109
- * uses bison's lookahead algorithm
110
-
111
- === 1.1.6 (2000-07-25)
112
- * new keyword "options" and its parameter "no_result_var"
113
-
114
- === 1.1.5 (2000-07-21)
115
- * [IMPORTANT] change keyword "token" to "convert"
116
- * NEW keyword "token" for token declearation
117
-
118
- === 1.1.4 (2000-07-13)
119
- * update installer
120
- * samples had bugs
121
-
122
- === 1.1.3 (2000-06-30)
123
- * new option -a; does not omit void action call
124
-
125
- === 1.1.2 (2000-06-29)
126
- * now racc does not use strscan.so
127
- * ScanError -&gt; Racc::ScanError, ParseError -&gt; Racc::ParseError
128
- * more friendly error messages
129
-
130
- === 1.1.1 (2000-06-15)
131
- * require miss
132
- * conflicts were not reported with -v
133
-
134
- === 1.1.0 (2000-06-12)
135
- * use other algolithm for generating state table
136
-
137
- === 1.0.4 (2000-06-04)
138
- * S/R conflict & -v flag causes unexpected exception (reported by Tosh)
139
- * output useless nonterminals/rules
140
-
141
- === 1.0.3 (2000-06-03)
142
- * use Array#collect! instead of #filter.
143
-
144
- === 1.0.2 (2000-05-16)
145
- * update installer (setup.rb)
146
-
147
- === 1.0.1 (2000-05-12)
148
- * state.rb: faster lookahead & debug lalr code
149
- * refine code
150
- * update amstd package (1.7.0)
151
-
152
- === 1.0.0 (2000-05-06)
153
- * version 1.0
154
-
155
- === 0.14.6 (2000-05-05)
156
- * much more debug output
157
-
158
- === 0.14.5 (2000-05-01)
159
-
160
- === 0.14.4 (2000-04-09)
161
- * Racc_* are included in Racc_arg
162
- * faster state generation (a little)
163
-
164
- === 0.14.3 (2000-04-04)
165
- * check both of SYM2ID and ID2SYM (thanks Katsuyuki Komatsu)
166
-
167
- === 0.14.2 (2000-04-03)
168
- * "class" on first line causes parse error (thanks Yoshiki Wada)
169
- * new option "racc -V"
170
-
171
- === 0.14.1 (2000-03-31)
172
-
173
- === 0.14.0 (2000-03-21)
174
- * implement "fast" table (same to bison)
175
- * stop line no. conversion temporaliry because of ruby bug
176
-
177
- === 0.13.1 (2000-03-21)
178
- * racc --version --copyright did not work (thanks Tadayoshi Funaba)
179
-
180
- === 0.13.0 (2000-03-20)
181
- * implement yyerror/yyerrok/yyaccept
182
-
183
- === 0.12.2 (2000-03-19)
184
- * -E flag had bug
185
-
186
- === 0.12.1 (2000-03-16)
187
- * modify the way to decide default action
188
-
189
- === 0.12.0 (2000-03-15)
190
- * implement real LALR
191
- * use both SLR and LALR to resolve conflicts
192
-
193
- === 0.11.3 (2000-03-09)
194
- * modify lookahead routine again
195
-
196
- === 0.11.2 (2000-03-09)
197
- * bug in lookahead routine
198
- * modify cparse.so for Symbol class of ruby 1.5
199
-
200
- === 0.11.1 (2000-03-08)
201
- * modify for Symbol
202
- * update strscan
203
-
204
- === 0.11.0 (2000-02-19)
205
- * if error is occured in action, ruby print line number of grammar file
206
-
207
- === 0.10.9 (2000-01-19)
208
- * change package/setup
209
-
210
- === 0.10.8 (2000-01-03)
211
- * (1-17 re-packed) add/modify documents
212
-
213
- === 0.10.7 (2000-01-03)
214
- * modify setup.rb, compile.rb, amstd/inst. (thanks: Koji Arai)
215
-
216
- === 0.10.6 (1999-12-24)
217
- * racc -e ruby
218
- * omit void action call
219
-
220
- === 0.10.5 (1999-12-21)
221
- * critical bug in embedded action implement
222
- * bug in setup.rb
223
- * modify calc[2].y for 0.10
224
-
225
- === 0.10.4 (1999-12-19)
226
- * support error recover ('error' token)
227
- * can embed runtime by "racc -E"
228
- * Racc is module
229
-
230
- === 0.10.3 (1999-12-01)
231
- * support embedded action
232
- * modify .output bug
233
-
234
- === 0.10.2 (1999-11-27)
235
- * update document
236
- * separate libracc.rb
237
-
238
- === 0.10.1 (1999-11-19)
239
- * rewrite runtime routine in C
240
- * once next_token returns [false, *], not call next_token
241
- * action is only default, not call next_token
242
- * $end is obsolute
243
- * LALRactionTable
244
-
245
- === 0.10.0 (1999-11-06)
246
- * next_value, peep_token is obsolute
247
- * @__debug__ -&gt; @yydebug
248
- * class...rule...end
249
- * refine libracc.rb
250
- * unify strscan library
251
- * *.rb are installed in lib/ruby/VERSION/racc/
252
-
253
- === 0.9.5 (1999-10-03)
254
- * too few arguments for __show_stack__
255
- * could not scan $end
256
- * typo in d.format.rb
257
-
258
- === 0.9.4 (1999-09-??)
259
-
260
- === 0.9.3 (1999-09-03)
261
-
262
- === 0.9.2 (1999-06-26)
263
-
264
- === 0.9.1 (1999-06-08)
265
-
266
- === 0.9.0 (1999-06-03)
267
-
268
- === 0.8.11 (?)
269
-
270
- === 0.8.10 (?)
271
-
272
- === 0.8.9 (1999-03-21)
273
-
274
- === 0.8.8 (1999-03-20)
275
-
276
- === 0.8.7 (1999-03-01)
277
-
278
- === 0.8.0 (1999-01-16)
279
-
280
- === 0.5.0 (1999-01-07)
281
-
282
- === 0.1.0 (1999-01-01)