hnswlib 0.9.1 → 0.9.2
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/CHANGELOG.md +5 -1
- data/ext/hnswlib/extconf.rb +0 -2
- data/ext/hnswlib/hnswlibext.cpp +1 -1
- data/ext/hnswlib/hnswlibext.hpp +1 -1
- data/lib/hnswlib/version.rb +1 -1
- data/lib/hnswlib.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: a7017404c84c76bfd6922f7b49734e9d9b4c2c966b35a0911c88e137ca17cc43
|
|
4
|
+
data.tar.gz: 7d8050815aa00860ae4a9d73544743260434648b1bd19167c71df5f621850609
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: aac29e5363178d72b0cad6aa8e1f6d1c3bc9fe913ca39c53e2cae58cbbf060da4df5fae32b2d0f3e2e0de0b87beb07958c11e226d40310970cba81115aa277ef
|
|
7
|
+
data.tar.gz: f3a8016da1e968ef30309ed86c9a2f76e1d31281f02aafbc17ce47c3290041adb70a7705c243313260e832aaca691148fe2b4cb9fa5f04760b6dd2f53a53f420
|
data/CHANGELOG.md
CHANGED
|
@@ -1,4 +1,8 @@
|
|
|
1
|
-
## [[0.9.
|
|
1
|
+
## [[0.9.2](https://github.com/yoshoku/hnswlib.rb/compare/v0.9.1...v0.9.2)] - 2026-02-16
|
|
2
|
+
|
|
3
|
+
- Remove libstdc++ loading check from native extensions build step.
|
|
4
|
+
|
|
5
|
+
## [[0.9.1](https://github.com/yoshoku/hnswlib.rb/compare/v0.9.0...v0.9.1)] - 2025-11-23
|
|
2
6
|
|
|
3
7
|
- Fix to use require for compatibility with distributions installing extensions separately.
|
|
4
8
|
|
data/ext/hnswlib/extconf.rb
CHANGED
data/ext/hnswlib/hnswlibext.cpp
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* hnswlib.rb is a Ruby binding for the Hnswlib.
|
|
3
3
|
*
|
|
4
|
-
* Copyright (c) 2021-
|
|
4
|
+
* Copyright (c) 2021-2026 Atsushi Tatsuma
|
|
5
5
|
*
|
|
6
6
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
7
7
|
* you may not use this file except in compliance with the License.
|
data/ext/hnswlib/hnswlibext.hpp
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* hnswlib.rb is a Ruby binding for the Hnswlib.
|
|
3
3
|
*
|
|
4
|
-
* Copyright (c) 2021-
|
|
4
|
+
* Copyright (c) 2021-2026 Atsushi Tatsuma
|
|
5
5
|
*
|
|
6
6
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
7
7
|
* you may not use this file except in compliance with the License.
|
data/lib/hnswlib/version.rb
CHANGED
data/lib/hnswlib.rb
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
# frozen_string_literal: true
|
|
2
2
|
|
|
3
3
|
require_relative 'hnswlib/version'
|
|
4
|
-
# On
|
|
4
|
+
# On RHEL-based Linux distributions, native extensions are installed in a separate
|
|
5
5
|
# directory from Ruby code, so use require to load them.
|
|
6
6
|
require 'hnswlib/hnswlibext'
|
|
7
7
|
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: hnswlib
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.9.
|
|
4
|
+
version: 0.9.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- yoshoku
|
|
@@ -57,7 +57,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
57
57
|
- !ruby/object:Gem::Version
|
|
58
58
|
version: '0'
|
|
59
59
|
requirements: []
|
|
60
|
-
rubygems_version:
|
|
60
|
+
rubygems_version: 4.0.3
|
|
61
61
|
specification_version: 4
|
|
62
62
|
summary: Ruby bindings for the Hnswlib.
|
|
63
63
|
test_files: []
|