zvec 0.0.3 → 0.1.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/CHANGELOG.md +22 -0
  3. data/lib/zvec/version.rb +1 -1
  4. metadata +12 -10
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: f479270e489b596a21de3ed401f4ac8bd6d4e83c13febe4390e6e4a11615f00e
4
- data.tar.gz: '06301395bfd0027f1e9c32520feddd0f55233fabb238a55e9aa917c40ea5aa87'
3
+ metadata.gz: 017bd94257573003b2197e6922f134b7678e1e31bf90218a374a690e4ab6634d
4
+ data.tar.gz: 34c1e774610e996506ae53f3675d0785446adf02ed1779bfe6c56bf2b4eab969
5
5
  SHA512:
6
- metadata.gz: dfc344481103cb05fe66e5cee4f53c2e8396018db58f865d07abba19b9ad3fe8df368ec6622dea608c5b8dd423bb28a8fdd2643aca26a326fc7abd97acc548b6
7
- data.tar.gz: 9573b88d42ec83df5ecc55c0f6fdd4b6fc6c347514e571f3ad3dd2fb5d28ada219a22bbfaf7d1b753a17a658e73ae1b7dfa64572f6586178bbb6253cec0fd8c1
6
+ metadata.gz: 759f4dc0147363cbe00b9ef6d1b66dd7fb60de87b6a70e7189f47c654981d9ab8ede39ad2619e4bf278069eec5c41d1190503c31208c7629744a2522727a7419
7
+ data.tar.gz: 3d792dfe8764444432ab47cbdd413184c45b236f91afd001d83423efa23a4b473438c16fec8a93bb196ba65aa90fd50ce78f25d75fb715595e547390e7b70ed7
data/CHANGELOG.md CHANGED
@@ -8,6 +8,28 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
8
8
 
9
9
  ## [Unreleased]
10
10
 
11
+ ## [0.0.3] - 2026-03-17
12
+
13
+ ### Changed
14
+
15
+ - Updated gemspec summary and description to highlight key features and use cases
16
+ - Removed experimental warnings from gem metadata
17
+ - Simplified version test to only check presence
18
+
19
+ ## [0.0.2] - 2026-03-01
20
+
21
+ ### Added
22
+
23
+ - Homebrew formula for pre-built C++ library (`brew install madbomber/zvec/zvec`)
24
+ - Three-tier build resolution: Homebrew pre-built, local submodule, FetchContent fallback
25
+ - Semantic search example with informers gem
26
+ - MkDocs documentation site
27
+ - CMake 4.x compatibility for antlr4
28
+
29
+ ### Changed
30
+
31
+ - Updated gem homepage URL in gemspec
32
+
11
33
  ## [0.0.1] - 2026-02-22
12
34
 
13
35
  Initial commit
data/lib/zvec/version.rb CHANGED
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Zvec
4
- VERSION = "0.0.3"
4
+ VERSION = "0.1.0"
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: zvec
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.3
4
+ version: 0.1.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Dewayne VanHoozer
@@ -23,9 +23,11 @@ dependencies:
23
23
  - - "~>"
24
24
  - !ruby/object:Gem::Version
25
25
  version: '4.11'
26
- description: Highly experimental. Do not install. Native Ruby extension providing
27
- bindings to the zvec C++ vector database library via Rice. This gem is an experimental
28
- collaboration with Claude and is not ready for production use.
26
+ description: Add vector search to your Ruby apps without external services. zvec provides
27
+ native bindings to Alibaba's high-performance C++ vector database via Rice, supporting
28
+ HNSW, IVF, and flat indexes with multiple distance metrics. Build semantic search,
29
+ recommendations, RAG pipelines, and similarity matching with pure Ruby — no HTTP
30
+ APIs, no infrastructure, no latency overhead.
29
31
  email:
30
32
  - dewayne@vanhoozer.me
31
33
  executables: []
@@ -38532,13 +38534,13 @@ files:
38532
38534
  - lib/zvec/collection.rb
38533
38535
  - lib/zvec/doc.rb
38534
38536
  - lib/zvec/version.rb
38535
- homepage: https://github.com/MadBomber/zvec
38537
+ homepage: https://github.com/MadBomber/zvec-ruby
38536
38538
  licenses:
38537
38539
  - MIT
38538
38540
  metadata:
38539
- homepage_uri: https://github.com/MadBomber/zvec
38540
- source_code_uri: https://github.com/MadBomber/zvec
38541
- changelog_uri: https://github.com/MadBomber/zvec/blob/main/CHANGELOG.md
38541
+ homepage_uri: https://github.com/MadBomber/zvec-ruby
38542
+ source_code_uri: https://github.com/MadBomber/zvec-ruby
38543
+ changelog_uri: https://github.com/MadBomber/zvec-ruby/blob/main/CHANGELOG.md
38542
38544
  post_install_message: |
38543
38545
  zvec installed successfully!
38544
38546
 
@@ -38559,7 +38561,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
38559
38561
  - !ruby/object:Gem::Version
38560
38562
  version: '0'
38561
38563
  requirements: []
38562
- rubygems_version: 4.0.7
38564
+ rubygems_version: 4.0.8
38563
38565
  specification_version: 4
38564
- summary: EXPERIMENTAL - DO NOT INSTALL - Ruby bindings for Alibaba zvec vector database
38566
+ summary: Fast vector database for Ruby native bindings to Alibaba's zvec C++ library
38565
38567
  test_files: []