Skip to content

Commit 95de80d

Browse files
authored
Merge pull request #396 from utilityai/version-bump-0.1.62
Bumped version to 0.1.62
2 parents a9f595d + d412387 commit 95de80d

File tree

5 files changed

+19
-19
lines changed

5 files changed

+19
-19
lines changed

Cargo.lock

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

embeddings/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
[package]
22
name = "embeddings"
3-
version = "0.1.61"
3+
version = "0.1.62"
44
edition = "2021"
55

66
[dependencies]
7-
llama-cpp-2 = { path = "../llama-cpp-2", version = "0.1.61" }
7+
llama-cpp-2 = { path = "../llama-cpp-2", version = "0.1.62" }
88
hf-hub = { workspace = true }
99
clap = { workspace = true , features = ["derive"] }
1010
anyhow = { workspace = true }

llama-cpp-2/Cargo.toml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "llama-cpp-2"
33
description = "llama.cpp bindings for Rust"
4-
version = "0.1.61"
4+
version = "0.1.62"
55
edition = "2021"
66
license = "MIT OR Apache-2.0"
77
repository = "https://github.com/utilityai/llama-cpp-rs"
@@ -10,7 +10,7 @@ repository = "https://github.com/utilityai/llama-cpp-rs"
1010

1111
[dependencies]
1212
enumflags2 = "0.7.10"
13-
llama-cpp-sys-2 = { path = "../llama-cpp-sys-2", version = "0.1.61" }
13+
llama-cpp-sys-2 = { path = "../llama-cpp-sys-2", version = "0.1.62" }
1414
thiserror = { workspace = true }
1515
tracing = { workspace = true }
1616

@@ -23,36 +23,36 @@ native = ["llama-cpp-sys-2/native"]
2323
sampler = []
2424

2525
[target.'cfg(target_feature = "avx")'.dependencies]
26-
llama-cpp-sys-2 = { path = "../llama-cpp-sys-2", version = "0.1.61", features = [
26+
llama-cpp-sys-2 = { path = "../llama-cpp-sys-2", version = "0.1.62", features = [
2727
"avx",
2828
] }
2929
[target.'cfg(target_feature = "avx2")'.dependencies]
30-
llama-cpp-sys-2 = { path = "../llama-cpp-sys-2", version = "0.1.61", features = [
30+
llama-cpp-sys-2 = { path = "../llama-cpp-sys-2", version = "0.1.62", features = [
3131
"avx2",
3232
] }
3333
[target.'cfg(target_feature = "avx512f")'.dependencies]
34-
llama-cpp-sys-2 = { path = "../llama-cpp-sys-2", version = "0.1.61", features = [
34+
llama-cpp-sys-2 = { path = "../llama-cpp-sys-2", version = "0.1.62", features = [
3535
"avx512",
3636
] }
3737
[target.'cfg(target_feature = "avx512vbmi")'.dependencies]
38-
llama-cpp-sys-2 = { path = "../llama-cpp-sys-2", version = "0.1.61", features = [
38+
llama-cpp-sys-2 = { path = "../llama-cpp-sys-2", version = "0.1.62", features = [
3939
"avx512_vmbi",
4040
] }
4141
[target.'cfg(target_feature = "avx512vnni")'.dependencies]
42-
llama-cpp-sys-2 = { path = "../llama-cpp-sys-2", version = "0.1.61", features = [
42+
llama-cpp-sys-2 = { path = "../llama-cpp-sys-2", version = "0.1.62", features = [
4343
"avx512_vnni",
4444
] }
4545
[target.'cfg(target_feature = "f16c")'.dependencies]
46-
llama-cpp-sys-2 = { path = "../llama-cpp-sys-2", version = "0.1.61", features = [
46+
llama-cpp-sys-2 = { path = "../llama-cpp-sys-2", version = "0.1.62", features = [
4747
"f16c",
4848
] }
4949
[target.'cfg(target_feature = "fma")'.dependencies]
50-
llama-cpp-sys-2 = { path = "../llama-cpp-sys-2", version = "0.1.61", features = [
50+
llama-cpp-sys-2 = { path = "../llama-cpp-sys-2", version = "0.1.62", features = [
5151
"fma",
5252
] }
5353

5454
[target.'cfg(all(target_os = "macos", any(target_arch = "aarch64", target_arch = "arm64")))'.dependencies]
55-
llama-cpp-sys-2 = { path = "../llama-cpp-sys-2", version = "0.1.61", features = [
55+
llama-cpp-sys-2 = { path = "../llama-cpp-sys-2", version = "0.1.62", features = [
5656
"metal",
5757
] }
5858

llama-cpp-sys-2/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "llama-cpp-sys-2"
33
description = "Low Level Bindings to llama.cpp"
4-
version = "0.1.61"
4+
version = "0.1.62"
55
edition = "2021"
66
license = "MIT OR Apache-2.0"
77
repository = "https://github.com/utilityai/llama-cpp-rs"

simple/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
[package]
22
name = "simple"
3-
version = "0.1.61"
3+
version = "0.1.62"
44
edition = "2021"
55

66
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
77

88
[dependencies]
9-
llama-cpp-2 = { path = "../llama-cpp-2", version = "0.1.61" }
9+
llama-cpp-2 = { path = "../llama-cpp-2", version = "0.1.62" }
1010
hf-hub = { workspace = true }
1111
clap = { workspace = true , features = ["derive"] }
1212
anyhow = { workspace = true }

0 commit comments

Comments
 (0)