llama_cpp 0.23.6 → 0.23.7

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: fb3a91df1f8212ccadeaa8472342d319f47810ee6d020117efe513de2d80f9f1
4
- data.tar.gz: 6d6e63c0807c87ce80ce4fcbfc578e73bfae0edb5aa5db6ef248b1aa1c71acce
3
+ metadata.gz: a758c0d22d950187f8512312c4866a37a128e3092ca842d18bf499465957ef62
4
+ data.tar.gz: 7dd5c14b42e608ee03af4f436b0c1eee8ba985dabc7a52a893aaef67068b43c4
5
5
  SHA512:
6
- metadata.gz: bf2a09e356f8a5572a9e8e7162fc884a95c09542458f6591544cd53bd1716fc4f0b68815fcf8a2b8e8632acda303007f5c34af8f4ceb535fa0c139fbe134c65a
7
- data.tar.gz: f7be7d1080f636ff44332098c95e04b2ce59a1a90fc3c5ed3bf179e08360d0717e5f7f5a4a186ed773ad15f1bff59036f30c57cc65b02558750b7aab47a4c8b3
6
+ metadata.gz: 4acc2505785d72b668a394a31430f3abbe059d829e91385d318aaf4fc1bbb39983554b6850b36383a44f1e8874eb903b21c18e222f1487b27aee8e3d8f2e20d7
7
+ data.tar.gz: d08c7c7626b66ae6d9d9c323c26aa200e8b05bdae9974002e9cacf1ca812530ad2904daed73795e61850a00c2f1240dcea7a8df443698c680d06b207126bf8b0
data/CHANGELOG.md CHANGED
@@ -1,3 +1,7 @@
1
+ ## [[0.23.7](https://github.com/yoshoku/llama_cpp.rb/compare/v0.23.6...v0.23.7)] - 2025-11-22
2
+
3
+ - Fix to use require for compatibility with distributions installing extensions separately.
4
+
1
5
  ## [[0.23.6](https://github.com/yoshoku/llama_cpp.rb/compare/v0.23.5...v0.23.6)] - 2025-11-15
2
6
 
3
7
  - Change supported llama.cpp version to b7030.
@@ -3,8 +3,8 @@
3
3
  # llama_cpp.rb provides Ruby bindings for the llama.cpp.
4
4
  module LlamaCpp
5
5
  # The version of llama_cpp.rb you install.
6
- VERSION = '0.23.6'
6
+ VERSION = '0.23.7'
7
7
 
8
8
  # The supported version of llama.cpp.
9
- LLAMA_CPP_VERSION = 'b7030'
9
+ LLAMA_CPP_VERSION = 'b7120'
10
10
  end
data/lib/llama_cpp.rb CHANGED
@@ -1,7 +1,9 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  require_relative 'llama_cpp/version'
4
- require_relative 'llama_cpp/llama_cpp'
4
+ # On distributions like Rocky Linux, native extensions are installed in a separate
5
+ # directory from Ruby code, so use require to load them.
6
+ require 'llama_cpp/llama_cpp'
5
7
 
6
8
  # llama_cpp.rb provides Ruby bindings for the llama.cpp.
7
9
  module LlamaCpp
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: llama_cpp
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.23.6
4
+ version: 0.23.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - yoshoku
@@ -33,7 +33,7 @@ metadata:
33
33
  homepage_uri: https://github.com/yoshoku/llama_cpp.rb
34
34
  source_code_uri: https://github.com/yoshoku/llama_cpp.rb
35
35
  changelog_uri: https://github.com/yoshoku/llama_cpp.rb/blob/main/CHANGELOG.md
36
- documentation_uri: https://gemdocs.org/gems/llama_cpp/0.23.6/
36
+ documentation_uri: https://gemdocs.org/gems/llama_cpp/0.23.7/
37
37
  rubygems_mfa_required: 'true'
38
38
  rdoc_options: []
39
39
  require_paths: