rroonga 11.0.6 → 12.0.0
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 +4 -4
- data/doc/text/news.md +6 -0
- data/ext/groonga/rb-grn.h +2 -2
- metadata +62 -62
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 79bff23494809c1f6cf740acf2151f06889ad139828c4c4baad981d3bf998127
|
|
4
|
+
data.tar.gz: 04476d31b9221f714880ebb3e36532cbcdca343d715d4202ececac2d3bff7ec8
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ca0f800a11f9cb6135d5117d0cbed6d349d590178b8d2f0aafe7766f0a89148defadd77055392e1c556550850faf254299487367a9a1b1bb119d971f285f9058
|
|
7
|
+
data.tar.gz: a831fc078b87ba358730984240556cc2063bc185e3e00f3a2cb2789ba6d51aa4c543ea167a6f8da7cca086c0daddffa24eb455e18866adf61055cadcfa8927d9
|
data/doc/text/news.md
CHANGED
data/ext/groonga/rb-grn.h
CHANGED
|
@@ -91,9 +91,9 @@ RB_GRN_BEGIN_DECLS
|
|
|
91
91
|
|
|
92
92
|
#define RB_GRN_HAVE_FLOAT32 GRN_VERSION_OR_LATER(10, 0, 2)
|
|
93
93
|
|
|
94
|
-
#define RB_GRN_MAJOR_VERSION
|
|
94
|
+
#define RB_GRN_MAJOR_VERSION 12
|
|
95
95
|
#define RB_GRN_MINOR_VERSION 0
|
|
96
|
-
#define RB_GRN_MICRO_VERSION
|
|
96
|
+
#define RB_GRN_MICRO_VERSION 0
|
|
97
97
|
|
|
98
98
|
#define RB_GRN_OBJECT(object) ((RbGrnObject *)(object))
|
|
99
99
|
#define RB_GRN_NAMED_OBJECT(object) ((RbGrnNamedObject *)(object))
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: rroonga
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version:
|
|
4
|
+
version: 12.0.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Kouhei Sutou
|
|
@@ -12,7 +12,7 @@ authors:
|
|
|
12
12
|
autorequire:
|
|
13
13
|
bindir: bin
|
|
14
14
|
cert_chain: []
|
|
15
|
-
date:
|
|
15
|
+
date: 2022-02-09 00:00:00.000000000 Z
|
|
16
16
|
dependencies:
|
|
17
17
|
- !ruby/object:Gem::Dependency
|
|
18
18
|
name: groonga-client
|
|
@@ -166,10 +166,10 @@ email:
|
|
|
166
166
|
- y.hayamizu@gmail.com
|
|
167
167
|
- dara@shidara.net
|
|
168
168
|
executables:
|
|
169
|
-
- grndump
|
|
170
169
|
- grntest-log-analyze
|
|
171
|
-
- groonga-database-inspect
|
|
172
170
|
- groonga-index-dump
|
|
171
|
+
- groonga-database-inspect
|
|
172
|
+
- grndump
|
|
173
173
|
extensions:
|
|
174
174
|
- ext/groonga/extconf.rb
|
|
175
175
|
extra_rdoc_files:
|
|
@@ -387,80 +387,80 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
387
387
|
- !ruby/object:Gem::Version
|
|
388
388
|
version: '0'
|
|
389
389
|
requirements: []
|
|
390
|
-
rubygems_version: 3.
|
|
390
|
+
rubygems_version: 3.1.6
|
|
391
391
|
signing_key:
|
|
392
392
|
specification_version: 4
|
|
393
393
|
summary: Ruby bindings for Groonga that provide full text search and column store
|
|
394
394
|
features.
|
|
395
395
|
test_files:
|
|
396
|
-
- test/
|
|
397
|
-
- test/
|
|
398
|
-
- test/test-
|
|
399
|
-
- test/test-
|
|
400
|
-
- test/test-column-cache.rb
|
|
401
|
-
- test/test-column.rb
|
|
402
|
-
- test/test-command-select.rb
|
|
403
|
-
- test/test-config.rb
|
|
404
|
-
- test/test-context.rb
|
|
405
|
-
- test/test-convert.rb
|
|
406
|
-
- test/test-data-column.rb
|
|
407
|
-
- test/test-database-dumper.rb
|
|
408
|
-
- test/test-database-inspector.rb
|
|
409
|
-
- test/test-database.rb
|
|
410
|
-
- test/test-default-cache.rb
|
|
396
|
+
- test/test-table-dumper.rb
|
|
397
|
+
- test/test-query-logger.rb
|
|
398
|
+
- test/test-variable-size-column.rb
|
|
399
|
+
- test/test-schema-dumper.rb
|
|
411
400
|
- test/test-double-array-trie.rb
|
|
412
|
-
- test/test-encoding.rb
|
|
413
|
-
- test/test-error-message.rb
|
|
414
|
-
- test/test-exception.rb
|
|
415
401
|
- test/test-expression-builder.rb
|
|
416
|
-
- test/test-
|
|
417
|
-
- test/test-fix-size-column.rb
|
|
418
|
-
- test/test-flushable.rb
|
|
419
|
-
- test/test-geo-point.rb
|
|
420
|
-
- test/test-gqtp.rb
|
|
421
|
-
- test/test-hash.rb
|
|
402
|
+
- test/test-array.rb
|
|
422
403
|
- test/test-id.rb
|
|
423
|
-
- test/test-
|
|
424
|
-
- test/test-
|
|
425
|
-
- test/test-
|
|
404
|
+
- test/test-table-key-support.rb
|
|
405
|
+
- test/test-database-dumper.rb
|
|
406
|
+
- test/test-expression.rb
|
|
426
407
|
- test/test-logger.rb
|
|
427
|
-
- test/test
|
|
428
|
-
- test/test-
|
|
429
|
-
- test/test-
|
|
408
|
+
- test/run-test.rb
|
|
409
|
+
- test/test-windows-event-logger.rb
|
|
410
|
+
- test/test-vector-column.rb
|
|
430
411
|
- test/test-operator.rb
|
|
431
|
-
- test/test-
|
|
412
|
+
- test/test-table.rb
|
|
413
|
+
- test/test-table-group.rb
|
|
414
|
+
- test/test-column.rb
|
|
432
415
|
- test/test-pagination.rb
|
|
416
|
+
- test/test-error-message.rb
|
|
417
|
+
- test/test-fix-size-column.rb
|
|
418
|
+
- test/test-table-arrow.rb
|
|
419
|
+
- test/test-sub-records.rb
|
|
420
|
+
- test/test-table-select-normalize.rb
|
|
421
|
+
- test/test-config.rb
|
|
433
422
|
- test/test-patricia-trie.rb
|
|
434
|
-
- test/test-
|
|
435
|
-
- test/test-
|
|
436
|
-
- test/test-query-logger.rb
|
|
437
|
-
- test/test-ractor.rb
|
|
438
|
-
- test/test-record.rb
|
|
439
|
-
- test/test-remote.rb
|
|
440
|
-
- test/test-request-canceler.rb
|
|
441
|
-
- test/test-request-timer.rb
|
|
423
|
+
- test/test-gqtp.rb
|
|
424
|
+
- test/test-memory-pool.rb
|
|
442
425
|
- test/test-schema-create-table.rb
|
|
443
|
-
- test/test-schema-dumper.rb
|
|
444
|
-
- test/test-schema-type.rb
|
|
445
426
|
- test/test-schema.rb
|
|
446
|
-
- test/test-
|
|
447
|
-
- test/test-
|
|
448
|
-
- test/test-
|
|
449
|
-
- test/test-
|
|
450
|
-
- test/test-
|
|
451
|
-
- test/test-
|
|
452
|
-
- test/test-
|
|
453
|
-
- test/test-table-select-mecab.rb
|
|
454
|
-
- test/test-table-select-normalize.rb
|
|
427
|
+
- test/test-column-cache.rb
|
|
428
|
+
- test/test-command-select.rb
|
|
429
|
+
- test/test-lock-timeout.rb
|
|
430
|
+
- test/test-request-canceler.rb
|
|
431
|
+
- test/test-default-cache.rb
|
|
432
|
+
- test/test-database.rb
|
|
433
|
+
- test/test-token-regexp.rb
|
|
455
434
|
- test/test-table-select-weight.rb
|
|
435
|
+
- test/test-database-inspector.rb
|
|
436
|
+
- test/test-encoding.rb
|
|
437
|
+
- test/test-hash.rb
|
|
438
|
+
- test/test-schema-type.rb
|
|
439
|
+
- test/test-type.rb
|
|
440
|
+
- test/test-context.rb
|
|
441
|
+
- test/test-flushable.rb
|
|
442
|
+
- test/test-normalizer.rb
|
|
456
443
|
- test/test-table-select.rb
|
|
444
|
+
- test/test-index-cursor.rb
|
|
445
|
+
- test/test-remote.rb
|
|
446
|
+
- test/test-snippet.rb
|
|
447
|
+
- test/test-exception.rb
|
|
448
|
+
- test/groonga-test-utils.rb
|
|
457
449
|
- test/test-table-traverse.rb
|
|
458
|
-
- test/test-
|
|
450
|
+
- test/test-convert.rb
|
|
459
451
|
- test/test-thread.rb
|
|
460
|
-
- test/test-
|
|
461
|
-
- test/test-
|
|
462
|
-
- test/test-
|
|
463
|
-
- test/test-
|
|
464
|
-
- test/test-
|
|
452
|
+
- test/test-plugin.rb
|
|
453
|
+
- test/test-accessor.rb
|
|
454
|
+
- test/test-index-column.rb
|
|
455
|
+
- test/test-data-column.rb
|
|
456
|
+
- test/test-ractor.rb
|
|
457
|
+
- test/test-geo-point.rb
|
|
458
|
+
- test/test-request-timer.rb
|
|
459
|
+
- test/test-table-select-mecab.rb
|
|
465
460
|
- test/test-version.rb
|
|
466
|
-
- test/test-
|
|
461
|
+
- test/test-package-label.rb
|
|
462
|
+
- test/test-variable.rb
|
|
463
|
+
- test/test-record.rb
|
|
464
|
+
- test/test-table-offset-and-limit.rb
|
|
465
|
+
- test/test-procedure.rb
|
|
466
|
+
- test/test-name.rb
|