From 1aad394bd832f8099f49fcfe1b999ca1190bc615 Mon Sep 17 00:00:00 2001 From: GitHub Actions Date: Wed, 26 Nov 2025 01:05:31 +0000 Subject: [PATCH] Bump version to 0.1.128 [skip ci] --- Cargo.lock | 8 ++++---- examples/embeddings/Cargo.toml | 2 +- examples/simple/Cargo.toml | 2 +- llama-cpp-2/Cargo.toml | 6 +++--- llama-cpp-sys-2/Cargo.toml | 2 +- 5 files changed, 10 insertions(+), 10 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 99834d7d..a5c9133b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -323,7 +323,7 @@ checksum = "3dca9240753cf90908d7e4aac30f630662b02aebaa1b58a3cadabdb23385b58b" [[package]] name = "embeddings" -version = "0.1.127" +version = "0.1.128" dependencies = [ "anyhow", "clap", @@ -1001,7 +1001,7 @@ checksum = "643cb0b8d4fcc284004d5fd0d67ccf61dfffadb7f75e1e71bc420f4688a3a704" [[package]] name = "llama-cpp-2" -version = "0.1.127" +version = "0.1.128" dependencies = [ "encoding_rs", "enumflags2", @@ -1014,7 +1014,7 @@ dependencies = [ [[package]] name = "llama-cpp-sys-2" -version = "0.1.127" +version = "0.1.128" dependencies = [ "bindgen", "cc", @@ -1609,7 +1609,7 @@ checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64" [[package]] name = "simple" -version = "0.1.127" +version = "0.1.128" dependencies = [ "anyhow", "clap", diff --git a/examples/embeddings/Cargo.toml b/examples/embeddings/Cargo.toml index 2b21b8f0..cf50a64f 100644 --- a/examples/embeddings/Cargo.toml +++ b/examples/embeddings/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "embeddings" -version = "0.1.127" +version = "0.1.128" edition = "2021" publish = false diff --git a/examples/simple/Cargo.toml b/examples/simple/Cargo.toml index 90bc92e3..baf441e6 100644 --- a/examples/simple/Cargo.toml +++ b/examples/simple/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "simple" -version = "0.1.127" +version = "0.1.128" edition = "2021" publish = false diff --git a/llama-cpp-2/Cargo.toml b/llama-cpp-2/Cargo.toml index 02b90a58..97b65607 100644 --- a/llama-cpp-2/Cargo.toml +++ b/llama-cpp-2/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "llama-cpp-2" description = "llama.cpp bindings for Rust" -version = "0.1.127" +version = "0.1.128" edition = "2021" license = "MIT OR Apache-2.0" repository = "https://github.com/utilityai/llama-cpp-rs" @@ -10,7 +10,7 @@ repository = "https://github.com/utilityai/llama-cpp-rs" [dependencies] enumflags2 = "0.7.12" -llama-cpp-sys-2 = { path = "../llama-cpp-sys-2", version = "0.1.127" } +llama-cpp-sys-2 = { path = "../llama-cpp-sys-2", version = "0.1.128" } thiserror = { workspace = true } tracing = { workspace = true } tracing-core = { workspace = true } @@ -35,7 +35,7 @@ mtmd = ["llama-cpp-sys-2/mtmd"] [target.'cfg(all(target_os = "macos", any(target_arch = "aarch64", target_arch = "arm64")))'.dependencies] -llama-cpp-sys-2 = { path = "../llama-cpp-sys-2", version = "0.1.127", features = [ +llama-cpp-sys-2 = { path = "../llama-cpp-sys-2", version = "0.1.128", features = [ "metal", ] } diff --git a/llama-cpp-sys-2/Cargo.toml b/llama-cpp-sys-2/Cargo.toml index 968bb7ea..dd2f9427 100644 --- a/llama-cpp-sys-2/Cargo.toml +++ b/llama-cpp-sys-2/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "llama-cpp-sys-2" description = "Low Level Bindings to llama.cpp" -version = "0.1.127" +version = "0.1.128" edition = "2021" license = "MIT OR Apache-2.0" repository = "https://github.com/utilityai/llama-cpp-rs"