red-adbc 0.1.0 → 0.2.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.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/LICENSE.txt +604 -0
  3. data/lib/adbc/version.rb +2 -2
  4. metadata +3 -3
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: a612c2ba4141da27054a000c1ca627329f517ab8ac91547a63ffaf37139c9273
4
- data.tar.gz: 8aea38bc0238f7319ca633af8688718825bc281e18b73c39db1ea73524629af4
3
+ metadata.gz: 0dd976107907a4243796fee855bb9f2779ea0a367cbc61171dbf38b38bf3ce23
4
+ data.tar.gz: 19f5164556bfaa1a2cccd81646ae541370c74df3bff855f2db8aba889de77472
5
5
  SHA512:
6
- metadata.gz: 10a91c8777c1bcbea3dda7eb93b5a544442a9266352e3c2acf099a0197df927cab7b9f173f1a366d8f5b83edb3e60c76766bbb46a627dc734f5c5641d8afaac9
7
- data.tar.gz: 234b85a2006723e5a6d622ea2ff37b08bf44ae576a2315c71035f7ffa23408b19c68bfa7789897e316c012f32875aba81bbabf4552458fc6da159b3e52cc03a1
6
+ metadata.gz: 8a7abb74f96c09c3a284c7450a15f4a4cd16b3df89d77b655fcdb3be0993b9ce8dcd175590cdbc46713b1afebf25b48fa0cd83fcf0497d3ced8aeb2e1c0a54bc
7
+ data.tar.gz: 3901a913c1245843430510e3485709ac6180d36bb9d63396b38245df3c084c9bfb1664b746258622d7129a1819028a3e1e5e0150fdda51a1422ff1836ff498d4
data/LICENSE.txt CHANGED
@@ -222,6 +222,49 @@ which is made available under the Creative Commons CC0 license.
222
222
 
223
223
  --------------------------------------------------------------------------------
224
224
 
225
+ The files under ci/conda/.ci-support have the following license
226
+
227
+ BSD 3-clause license
228
+ Copyright (c) 2015-2022, conda-forge
229
+ All rights reserved.
230
+
231
+ --------------------------------------------------------------------------------
232
+
233
+ 3rdparty dependency Go is statically linked in certain binary distributions,
234
+ like the Python wheels. The Go project is under the BSD 3-clause license +
235
+ PATENTS weak patent termination clause
236
+ (https://github.com/golang/go/blob/master/PATENTS).
237
+
238
+ Copyright (c) 2009 The Go Authors. All rights reserved.
239
+
240
+ Redistribution and use in source and binary forms, with or without
241
+ modification, are permitted provided that the following conditions are
242
+ met:
243
+
244
+ * Redistributions of source code must retain the above copyright
245
+ notice, this list of conditions and the following disclaimer.
246
+ * Redistributions in binary form must reproduce the above
247
+ copyright notice, this list of conditions and the following disclaimer
248
+ in the documentation and/or other materials provided with the
249
+ distribution.
250
+ * Neither the name of Google Inc. nor the names of its
251
+ contributors may be used to endorse or promote products derived from
252
+ this software without specific prior written permission.
253
+
254
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
255
+ "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
256
+ LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
257
+ A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
258
+ OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
259
+ SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
260
+ LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
261
+ DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
262
+ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
263
+ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
264
+ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
265
+
266
+ --------------------------------------------------------------------------------
267
+
225
268
  3rdparty dependency libpq is statically linked in certain binary
226
269
  distributions, like the Python wheels. libpq has the following license:
227
270
 
@@ -265,3 +308,564 @@ https://www.openssl.org/source/license.html
265
308
 
266
309
  3rdparty dependency SQLite is statically linked in certain binary
267
310
  distributions, like the Python wheels. SQLite is public domain.
311
+
312
+ --------------------------------------------------------------------------------
313
+
314
+ 3rdparty dependency github.com/andybalholm/brotli
315
+ is statically linked in certain binary distributions, like the Python wheels.
316
+ github.com/andybalholm/brotli is under the MIT license.
317
+ Copyright (c) 2009, 2010, 2013-2016 by the Brotli Authors.
318
+
319
+ Permission is hereby granted, free of charge, to any person obtaining a copy
320
+ of this software and associated documentation files (the "Software"), to deal
321
+ in the Software without restriction, including without limitation the rights
322
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
323
+ copies of the Software, and to permit persons to whom the Software is
324
+ furnished to do so, subject to the following conditions:
325
+
326
+ The above copyright notice and this permission notice shall be included in
327
+ all copies or substantial portions of the Software.
328
+
329
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
330
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
331
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
332
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
333
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
334
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
335
+ THE SOFTWARE.
336
+
337
+ --------------------------------------------------------------------------------
338
+
339
+ 3rdparty dependency github.com/apache/thrift/lib/go/thrift
340
+ is statically linked in certain binary distributions, like the Python wheels.
341
+ github.com/apache/thrift/lib/go/thrift is under the Apache-2.0 license.
342
+
343
+ --------------------------------------------------------------------------------
344
+
345
+ 3rdparty dependency github.com/bluele/gcache
346
+ is statically linked in certain binary distributions, like the Python wheels.
347
+ github.com/bluele/gcache is under the MIT license.
348
+ The MIT License (MIT)
349
+
350
+ Copyright (c) 2017 Jun Kimura
351
+
352
+ Permission is hereby granted, free of charge, to any person obtaining a copy
353
+ of this software and associated documentation files (the "Software"), to deal
354
+ in the Software without restriction, including without limitation the rights
355
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
356
+ copies of the Software, and to permit persons to whom the Software is
357
+ furnished to do so, subject to the following conditions:
358
+
359
+ The above copyright notice and this permission notice shall be included in
360
+ all copies or substantial portions of the Software.
361
+
362
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
363
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
364
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
365
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
366
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
367
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
368
+ THE SOFTWARE.
369
+
370
+ --------------------------------------------------------------------------------
371
+
372
+ 3rdparty dependency github.com/davecgh/go-spew/spew
373
+ is statically linked in certain binary distributions, like the Python wheels.
374
+ github.com/davecgh/go-spew/spew is under the ISC license.
375
+ ISC License
376
+
377
+ Copyright (c) 2012-2016 Dave Collins <dave@davec.name>
378
+
379
+ Permission to use, copy, modify, and/or distribute this software for any
380
+ purpose with or without fee is hereby granted, provided that the above
381
+ copyright notice and this permission notice appear in all copies.
382
+
383
+ THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
384
+ WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
385
+ MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
386
+ ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
387
+ WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
388
+ ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
389
+ OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
390
+
391
+ --------------------------------------------------------------------------------
392
+
393
+ 3rdparty dependency github.com/goccy/go-json
394
+ is statically linked in certain binary distributions, like the Python wheels.
395
+ github.com/goccy/go-json is under the MIT license.
396
+ MIT License
397
+
398
+ Copyright (c) 2020 Masaaki Goshima
399
+
400
+ Permission is hereby granted, free of charge, to any person obtaining a copy
401
+ of this software and associated documentation files (the "Software"), to deal
402
+ in the Software without restriction, including without limitation the rights
403
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
404
+ copies of the Software, and to permit persons to whom the Software is
405
+ furnished to do so, subject to the following conditions:
406
+
407
+ The above copyright notice and this permission notice shall be included in all
408
+ copies or substantial portions of the Software.
409
+
410
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
411
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
412
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
413
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
414
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
415
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
416
+ SOFTWARE.
417
+
418
+ --------------------------------------------------------------------------------
419
+
420
+ 3rdparty dependency github.com/golang/protobuf
421
+ is statically linked in certain binary distributions, like the Python wheels.
422
+ github.com/golang/protobuf is under the BSD-3-Clause license.
423
+ Copyright 2010 The Go Authors. All rights reserved.
424
+
425
+ Redistribution and use in source and binary forms, with or without
426
+ modification, are permitted provided that the following conditions are
427
+ met:
428
+
429
+ * Redistributions of source code must retain the above copyright
430
+ notice, this list of conditions and the following disclaimer.
431
+ * Redistributions in binary form must reproduce the above
432
+ copyright notice, this list of conditions and the following disclaimer
433
+ in the documentation and/or other materials provided with the
434
+ distribution.
435
+ * Neither the name of Google Inc. nor the names of its
436
+ contributors may be used to endorse or promote products derived from
437
+ this software without specific prior written permission.
438
+
439
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
440
+ "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
441
+ LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
442
+ A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
443
+ OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
444
+ SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
445
+ LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
446
+ DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
447
+ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
448
+ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
449
+ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
450
+
451
+
452
+ --------------------------------------------------------------------------------
453
+
454
+ 3rdparty dependency github.com/golang/snappy
455
+ is statically linked in certain binary distributions, like the Python wheels.
456
+ github.com/golang/snappy is under the BSD-3-Clause license.
457
+ Copyright (c) 2011 The Snappy-Go Authors. All rights reserved.
458
+
459
+ Redistribution and use in source and binary forms, with or without
460
+ modification, are permitted provided that the following conditions are
461
+ met:
462
+
463
+ * Redistributions of source code must retain the above copyright
464
+ notice, this list of conditions and the following disclaimer.
465
+ * Redistributions in binary form must reproduce the above
466
+ copyright notice, this list of conditions and the following disclaimer
467
+ in the documentation and/or other materials provided with the
468
+ distribution.
469
+ * Neither the name of Google Inc. nor the names of its
470
+ contributors may be used to endorse or promote products derived from
471
+ this software without specific prior written permission.
472
+
473
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
474
+ "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
475
+ LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
476
+ A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
477
+ OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
478
+ SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
479
+ LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
480
+ DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
481
+ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
482
+ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
483
+ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
484
+
485
+ --------------------------------------------------------------------------------
486
+
487
+ 3rdparty dependency github.com/google/flatbuffers/go
488
+ is statically linked in certain binary distributions, like the Python wheels.
489
+ github.com/google/flatbuffers/go is under the Apache-2.0 license.
490
+
491
+ --------------------------------------------------------------------------------
492
+
493
+ 3rdparty dependency github.com/klauspost/compress
494
+ is statically linked in certain binary distributions, like the Python wheels.
495
+ github.com/klauspost/compress is under the Apache-2.0 license.
496
+
497
+ --------------------------------------------------------------------------------
498
+
499
+ 3rdparty dependency github.com/klauspost/compress/internal/snapref
500
+ is statically linked in certain binary distributions, like the Python wheels.
501
+ github.com/klauspost/compress/internal/snapref is under the BSD-3-Clause license.
502
+ Copyright (c) 2011 The Snappy-Go Authors. All rights reserved.
503
+
504
+ Redistribution and use in source and binary forms, with or without
505
+ modification, are permitted provided that the following conditions are
506
+ met:
507
+
508
+ * Redistributions of source code must retain the above copyright
509
+ notice, this list of conditions and the following disclaimer.
510
+ * Redistributions in binary form must reproduce the above
511
+ copyright notice, this list of conditions and the following disclaimer
512
+ in the documentation and/or other materials provided with the
513
+ distribution.
514
+ * Neither the name of Google Inc. nor the names of its
515
+ contributors may be used to endorse or promote products derived from
516
+ this software without specific prior written permission.
517
+
518
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
519
+ "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
520
+ LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
521
+ A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
522
+ OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
523
+ SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
524
+ LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
525
+ DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
526
+ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
527
+ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
528
+ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
529
+
530
+ --------------------------------------------------------------------------------
531
+
532
+ 3rdparty dependency github.com/klauspost/compress/zstd/internal/xxhash
533
+ is statically linked in certain binary distributions, like the Python wheels.
534
+ github.com/klauspost/compress/zstd/internal/xxhash is under the MIT license.
535
+ Copyright (c) 2016 Caleb Spare
536
+
537
+ MIT License
538
+
539
+ Permission is hereby granted, free of charge, to any person obtaining
540
+ a copy of this software and associated documentation files (the
541
+ "Software"), to deal in the Software without restriction, including
542
+ without limitation the rights to use, copy, modify, merge, publish,
543
+ distribute, sublicense, and/or sell copies of the Software, and to
544
+ permit persons to whom the Software is furnished to do so, subject to
545
+ the following conditions:
546
+
547
+ The above copyright notice and this permission notice shall be
548
+ included in all copies or substantial portions of the Software.
549
+
550
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
551
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
552
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
553
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
554
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
555
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
556
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
557
+
558
+ --------------------------------------------------------------------------------
559
+
560
+ 3rdparty dependency github.com/klauspost/cpuid/v2
561
+ is statically linked in certain binary distributions, like the Python wheels.
562
+ github.com/klauspost/cpuid/v2 is under the MIT license.
563
+ The MIT License (MIT)
564
+
565
+ Copyright (c) 2015 Klaus Post
566
+
567
+ Permission is hereby granted, free of charge, to any person obtaining a copy
568
+ of this software and associated documentation files (the "Software"), to deal
569
+ in the Software without restriction, including without limitation the rights
570
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
571
+ copies of the Software, and to permit persons to whom the Software is
572
+ furnished to do so, subject to the following conditions:
573
+
574
+ The above copyright notice and this permission notice shall be included in all
575
+ copies or substantial portions of the Software.
576
+
577
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
578
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
579
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
580
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
581
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
582
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
583
+ SOFTWARE.
584
+
585
+
586
+ --------------------------------------------------------------------------------
587
+
588
+ 3rdparty dependency github.com/pierrec/lz4/v4
589
+ is statically linked in certain binary distributions, like the Python wheels.
590
+ github.com/pierrec/lz4/v4 is under the BSD-3-Clause license.
591
+ Copyright (c) 2015, Pierre Curto
592
+ All rights reserved.
593
+
594
+ Redistribution and use in source and binary forms, with or without
595
+ modification, are permitted provided that the following conditions are met:
596
+
597
+ * Redistributions of source code must retain the above copyright notice, this
598
+ list of conditions and the following disclaimer.
599
+
600
+ * Redistributions in binary form must reproduce the above copyright notice,
601
+ this list of conditions and the following disclaimer in the documentation
602
+ and/or other materials provided with the distribution.
603
+
604
+ * Neither the name of xxHash nor the names of its
605
+ contributors may be used to endorse or promote products derived from
606
+ this software without specific prior written permission.
607
+
608
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
609
+ AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
610
+ IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
611
+ DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
612
+ FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
613
+ DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
614
+ SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
615
+ CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
616
+ OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
617
+ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
618
+
619
+
620
+ --------------------------------------------------------------------------------
621
+
622
+ 3rdparty dependency github.com/pmezard/go-difflib/difflib
623
+ is statically linked in certain binary distributions, like the Python wheels.
624
+ github.com/pmezard/go-difflib/difflib is under the BSD-3-Clause license.
625
+ Copyright (c) 2013, Patrick Mezard
626
+ All rights reserved.
627
+
628
+ Redistribution and use in source and binary forms, with or without
629
+ modification, are permitted provided that the following conditions are
630
+ met:
631
+
632
+ Redistributions of source code must retain the above copyright
633
+ notice, this list of conditions and the following disclaimer.
634
+ Redistributions in binary form must reproduce the above copyright
635
+ notice, this list of conditions and the following disclaimer in the
636
+ documentation and/or other materials provided with the distribution.
637
+ The names of its contributors may not be used to endorse or promote
638
+ products derived from this software without specific prior written
639
+ permission.
640
+
641
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
642
+ IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
643
+ TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
644
+ PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
645
+ HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
646
+ SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED
647
+ TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
648
+ PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
649
+ LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
650
+ NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
651
+ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
652
+
653
+ --------------------------------------------------------------------------------
654
+
655
+ 3rdparty dependency github.com/stretchr/testify
656
+ is statically linked in certain binary distributions, like the Python wheels.
657
+ github.com/stretchr/testify is under the MIT license.
658
+ MIT License
659
+
660
+ Copyright (c) 2012-2020 Mat Ryer, Tyler Bunnell and contributors.
661
+
662
+ Permission is hereby granted, free of charge, to any person obtaining a copy
663
+ of this software and associated documentation files (the "Software"), to deal
664
+ in the Software without restriction, including without limitation the rights
665
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
666
+ copies of the Software, and to permit persons to whom the Software is
667
+ furnished to do so, subject to the following conditions:
668
+
669
+ The above copyright notice and this permission notice shall be included in all
670
+ copies or substantial portions of the Software.
671
+
672
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
673
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
674
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
675
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
676
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
677
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
678
+ SOFTWARE.
679
+
680
+ --------------------------------------------------------------------------------
681
+
682
+ 3rdparty dependency github.com/zeebo/xxh3
683
+ is statically linked in certain binary distributions, like the Python wheels.
684
+ github.com/zeebo/xxh3 is under the BSD-2-Clause license.
685
+ xxHash Library
686
+ Copyright (c) 2012-2014, Yann Collet
687
+ Copyright (c) 2019, Jeff Wendling
688
+ All rights reserved.
689
+
690
+ Redistribution and use in source and binary forms, with or without modification,
691
+ are permitted provided that the following conditions are met:
692
+
693
+ * Redistributions of source code must retain the above copyright notice, this
694
+ list of conditions and the following disclaimer.
695
+
696
+ * Redistributions in binary form must reproduce the above copyright notice, this
697
+ list of conditions and the following disclaimer in the documentation and/or
698
+ other materials provided with the distribution.
699
+
700
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
701
+ ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
702
+ WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
703
+ DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR
704
+ ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
705
+ (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
706
+ LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
707
+ ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
708
+ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
709
+ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
710
+
711
+ --------------------------------------------------------------------------------
712
+
713
+ 3rdparty dependency golang.org/x/exp/maps
714
+ is statically linked in certain binary distributions, like the Python wheels.
715
+ golang.org/x/exp/maps is under the BSD-3-Clause license.
716
+
717
+ 3rdparty dependency golang.org/x/mod/semver
718
+ is statically linked in certain binary distributions, like the Python wheels.
719
+ golang.org/x/mod/semver is under the BSD-3-Clause license.
720
+
721
+ 3rdparty dependency golang.org/x/net
722
+ is statically linked in certain binary distributions, like the Python wheels.
723
+ golang.org/x/net is under the BSD-3-Clause license.
724
+
725
+ 3rdparty dependency golang.org/x/sync/errgroup
726
+ is statically linked in certain binary distributions, like the Python wheels.
727
+ golang.org/x/sync/errgroup is under the BSD-3-Clause license.
728
+
729
+ 3rdparty dependency golang.org/x/sys
730
+ is statically linked in certain binary distributions, like the Python wheels.
731
+ golang.org/x/sys is under the BSD-3-Clause license.
732
+
733
+ 3rdparty dependency golang.org/x/text
734
+ is statically linked in certain binary distributions, like the Python wheels.
735
+ golang.org/x/text is under the BSD-3-Clause license.
736
+
737
+ 3rdparty dependency golang.org/x/tools
738
+ is statically linked in certain binary distributions, like the Python wheels.
739
+ golang.org/x/tools is under the BSD-3-Clause license.
740
+
741
+ 3rdparty dependency golang.org/x/xerrors
742
+ is statically linked in certain binary distributions, like the Python wheels.
743
+ golang.org/x/xerrors is under the BSD-3-Clause license.
744
+
745
+ Copyright (c) 2009 The Go Authors. All rights reserved.
746
+
747
+ Redistribution and use in source and binary forms, with or without
748
+ modification, are permitted provided that the following conditions are
749
+ met:
750
+
751
+ * Redistributions of source code must retain the above copyright
752
+ notice, this list of conditions and the following disclaimer.
753
+ * Redistributions in binary form must reproduce the above
754
+ copyright notice, this list of conditions and the following disclaimer
755
+ in the documentation and/or other materials provided with the
756
+ distribution.
757
+ * Neither the name of Google Inc. nor the names of its
758
+ contributors may be used to endorse or promote products derived from
759
+ this software without specific prior written permission.
760
+
761
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
762
+ "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
763
+ LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
764
+ A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
765
+ OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
766
+ SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
767
+ LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
768
+ DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
769
+ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
770
+ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
771
+ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
772
+
773
+ --------------------------------------------------------------------------------
774
+
775
+ 3rdparty dependency google.golang.org/genproto/googleapis/rpc/status
776
+ is statically linked in certain binary distributions, like the Python wheels.
777
+ google.golang.org/genproto/googleapis/rpc/status is under the Apache-2.0 license.
778
+
779
+ --------------------------------------------------------------------------------
780
+
781
+ 3rdparty dependency google.golang.org/grpc
782
+ is statically linked in certain binary distributions, like the Python wheels.
783
+ google.golang.org/grpc is under the Apache-2.0 license.
784
+
785
+ --------------------------------------------------------------------------------
786
+
787
+ 3rdparty dependency google.golang.org/protobuf
788
+ is statically linked in certain binary distributions, like the Python wheels.
789
+ google.golang.org/protobuf is under the BSD-3-Clause license.
790
+
791
+ Copyright (c) 2018 The Go Authors. All rights reserved.
792
+
793
+ Redistribution and use in source and binary forms, with or without
794
+ modification, are permitted provided that the following conditions are
795
+ met:
796
+
797
+ * Redistributions of source code must retain the above copyright
798
+ notice, this list of conditions and the following disclaimer.
799
+ * Redistributions in binary form must reproduce the above
800
+ copyright notice, this list of conditions and the following disclaimer
801
+ in the documentation and/or other materials provided with the
802
+ distribution.
803
+ * Neither the name of Google Inc. nor the names of its
804
+ contributors may be used to endorse or promote products derived from
805
+ this software without specific prior written permission.
806
+
807
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
808
+ "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
809
+ LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
810
+ A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
811
+ OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
812
+ SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
813
+ LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
814
+ DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
815
+ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
816
+ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
817
+ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
818
+
819
+ --------------------------------------------------------------------------------
820
+
821
+ 3rdparty dependency gopkg.in/yaml.v3
822
+ is statically linked in certain binary distributions, like the Python wheels.
823
+ This project is covered by two different licenses: MIT and Apache.
824
+
825
+ #### MIT License ####
826
+
827
+ The following files were ported to Go from C files of libyaml, and thus
828
+ are still covered by their original MIT license, with the additional
829
+ copyright staring in 2011 when the project was ported over:
830
+
831
+ apic.go emitterc.go parserc.go readerc.go scannerc.go
832
+ writerc.go yamlh.go yamlprivateh.go
833
+
834
+ Copyright (c) 2006-2010 Kirill Simonov
835
+ Copyright (c) 2006-2011 Kirill Simonov
836
+
837
+ Permission is hereby granted, free of charge, to any person obtaining a copy of
838
+ this software and associated documentation files (the "Software"), to deal in
839
+ the Software without restriction, including without limitation the rights to
840
+ use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
841
+ of the Software, and to permit persons to whom the Software is furnished to do
842
+ so, subject to the following conditions:
843
+
844
+ The above copyright notice and this permission notice shall be included in all
845
+ copies or substantial portions of the Software.
846
+
847
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
848
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
849
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
850
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
851
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
852
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
853
+ SOFTWARE.
854
+
855
+ ### Apache License ###
856
+
857
+ All the remaining project files are covered by the Apache license:
858
+
859
+ Copyright (c) 2011-2019 Canonical Ltd
860
+
861
+ Licensed under the Apache License, Version 2.0 (the "License");
862
+ you may not use this file except in compliance with the License.
863
+ You may obtain a copy of the License at
864
+
865
+ http://www.apache.org/licenses/LICENSE-2.0
866
+
867
+ Unless required by applicable law or agreed to in writing, software
868
+ distributed under the License is distributed on an "AS IS" BASIS,
869
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
870
+ See the License for the specific language governing permissions and
871
+ limitations under the License.
data/lib/adbc/version.rb CHANGED
@@ -16,10 +16,10 @@
16
16
  # under the License.
17
17
 
18
18
  module ADBC
19
- VERSION = "0.1.0"
19
+ VERSION = "0.2.0"
20
20
 
21
21
  module Version
22
- MAJOR, MINOR, MICRO = VERSION.split(".").collect(&:to_i)
22
+ MAJOR, MINOR, MICRO, TAG = VERSION.split(".").collect(&:to_i)
23
23
  STRING = VERSION
24
24
  end
25
25
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: red-adbc
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Apache Arrow Developers
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-01-10 00:00:00.000000000 Z
11
+ date: 2023-02-15 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: red-arrow
@@ -61,7 +61,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
61
61
  - !ruby/object:Gem::Version
62
62
  version: '0'
63
63
  requirements: []
64
- rubygems_version: 3.3.15
64
+ rubygems_version: 3.3.20
65
65
  signing_key:
66
66
  specification_version: 4
67
67
  summary: Red ADBC is the Ruby bindings of ADBC (Apache Arrow Database Connectivity)