pgvector 0.1.1 → 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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 4e1249b9ced41c051b06654cea7539a58e2816d794461788bec605eab464cca8
4
- data.tar.gz: fc65c3c883a39cd1b63c804eaae65897c2a332836b5d91ba5cf5248dc660fb8f
3
+ metadata.gz: a0729ce3ec22ea08be365fc6c7a5c5e0b038860d5c9a57ccd2554d9d8b57a3f2
4
+ data.tar.gz: c36eabc18ca6db3dd47204df3c48b58f7ac635e230bb9039269506d7d8afa834
5
5
  SHA512:
6
- metadata.gz: b37957502d147a221b3678c373b648090de7f9101fa1199e1721ffc1ac0e04d99318935866f12295a160c2f1d1d7648e3103355865eb1625b11619b9e52981d6
7
- data.tar.gz: abdb670ea89993a92982c3913b192c6fed4ac6329beb2c0f1abb5aef39ef47993198ecdcdd5431ea057b84aa3931a532a96f5e85d0ab8a6c4faec48a98fc74de
6
+ metadata.gz: ff4dc7d6a7a26b1ff3502d2305b62fc25fff38f3bf314261dcb6aa0f40cc520963cfd9562af03b11678cad7819aef9951b480a61e138ae2ae02459ed668a5298
7
+ data.tar.gz: 6aa39019d5566f83331f3c95bb6404b065b7f7a29be62e84be2f2b6ea58bc27d20002543d93dfec7a17256c970e32b9676e2d319d07758cf49fc31b89d3d4d7b
data/CHANGELOG.md CHANGED
@@ -1,3 +1,7 @@
1
+ ## 0.2.0 (2023-05-11)
2
+
3
+ - Dropped support for Ruby < 3
4
+
1
5
  ## 0.1.1 (2022-02-08)
2
6
 
3
7
  - Added autoloading
data/LICENSE.txt CHANGED
@@ -1,6 +1,6 @@
1
1
  The MIT License (MIT)
2
2
 
3
- Copyright (c) 2022 Andrew Kane
3
+ Copyright (c) 2022-2023 Andrew Kane
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
data/README.md CHANGED
@@ -33,14 +33,14 @@ conn.type_map_for_results = PG::BasicTypeMapForResults.new(conn, registry: regis
33
33
  Insert a vector
34
34
 
35
35
  ```ruby
36
- factors = [1, 2, 3]
37
- conn.exec_params("INSERT INTO items (factors) VALUES ($1)", [factors])
36
+ embedding = [1, 2, 3]
37
+ conn.exec_params("INSERT INTO items (embedding) VALUES ($1)", [embedding])
38
38
  ```
39
39
 
40
40
  Get the nearest neighbors to a vector
41
41
 
42
42
  ```ruby
43
- conn.exec_params("SELECT * FROM items ORDER BY factors <-> $1 LIMIT 5", [factors]).to_a
43
+ conn.exec_params("SELECT * FROM items ORDER BY embedding <-> $1 LIMIT 5", [embedding]).to_a
44
44
  ```
45
45
 
46
46
  ## History
@@ -1,3 +1,3 @@
1
1
  module Pgvector
2
- VERSION = "0.1.1"
2
+ VERSION = "0.2.0"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: pgvector
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 0.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Andrew Kane
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-02-08 00:00:00.000000000 Z
11
+ date: 2023-05-12 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description:
14
14
  email: andrew@ankane.org
@@ -34,14 +34,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
34
34
  requirements:
35
35
  - - ">="
36
36
  - !ruby/object:Gem::Version
37
- version: '2.6'
37
+ version: '3'
38
38
  required_rubygems_version: !ruby/object:Gem::Requirement
39
39
  requirements:
40
40
  - - ">="
41
41
  - !ruby/object:Gem::Version
42
42
  version: '0'
43
43
  requirements: []
44
- rubygems_version: 3.3.3
44
+ rubygems_version: 3.4.10
45
45
  signing_key:
46
46
  specification_version: 4
47
47
  summary: pgvector support for Ruby