From 7cc5b85f8814868753bfe9ad94470a58cb7cfea3 Mon Sep 17 00:00:00 2001 From: marcus Date: Mon, 4 Mar 2024 17:52:36 -0800 Subject: [PATCH] bump version --- Cargo.lock | 4 ++-- llama-cpp-2/Cargo.toml | 4 ++-- llama-cpp-sys-2/Cargo.toml | 2 +- simple/Cargo.toml | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 9f0c657d..bbc08ed0 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -714,7 +714,7 @@ checksum = "c4cd1a83af159aa67994778be9070f0ae1bd732942279cabb14f86f986a21456" [[package]] name = "llama-cpp-2" -version = "0.1.34" +version = "0.1.35" dependencies = [ "criterion", "hf-hub", @@ -726,7 +726,7 @@ dependencies = [ [[package]] name = "llama-cpp-sys-2" -version = "0.1.34" +version = "0.1.35" dependencies = [ "bindgen", "cc", diff --git a/llama-cpp-2/Cargo.toml b/llama-cpp-2/Cargo.toml index 6f18b1eb..bdd861bd 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.34" +version = "0.1.35" edition = "2021" license = "MIT OR Apache-2.0" repository = "https://github.com/utilityai/llama-cpp-rs" @@ -9,7 +9,7 @@ repository = "https://github.com/utilityai/llama-cpp-rs" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -llama-cpp-sys-2 = { path = "../llama-cpp-sys-2", version = "0.1.34" } +llama-cpp-sys-2 = { path = "../llama-cpp-sys-2", version = "0.1.35" } thiserror = { workspace = true } tracing = { workspace = true } diff --git a/llama-cpp-sys-2/Cargo.toml b/llama-cpp-sys-2/Cargo.toml index 6e631265..dee3af76 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.34" +version = "0.1.35" edition = "2021" license = "MIT OR Apache-2.0" repository = "https://github.com/utilityai/llama-cpp-rs" diff --git a/simple/Cargo.toml b/simple/Cargo.toml index 8ee2f40f..6ef42a49 100644 --- a/simple/Cargo.toml +++ b/simple/Cargo.toml @@ -6,7 +6,7 @@ edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -llama-cpp-2 = { path = "../llama-cpp-2", version = "0.1.34" } +llama-cpp-2 = { path = "../llama-cpp-2", version = "0.1.35" } hf-hub = { workspace = true } clap = { workspace = true , features = ["derive"] } anyhow = { workspace = true }