Skip to content

Commit

Permalink
chore: Release
Browse files Browse the repository at this point in the history
  • Loading branch information
philpax committed May 8, 2023
1 parent 1435bee commit bcb88e8
Show file tree
Hide file tree
Showing 11 changed files with 34 additions and 34 deletions.
20 changes: 10 additions & 10 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions binaries/llm-cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
edition = "2021"
name = "llm-cli"
version = "0.1.0-rc4"
version = "0.1.1"
repository = { workspace = true }
license = { workspace = true }
description = "A CLI for running inference on supported Large Language Models. Powered by the `llm` library."
Expand All @@ -12,7 +12,7 @@ name = "llm"
path = "src/main.rs"

[dependencies]
llm = { path = "../../crates/llm", version = "0.1.0-rc4" }
llm = { path = "../../crates/llm", version = "0.1.1" }

log = { workspace = true }
rand = { workspace = true }
Expand Down
4 changes: 2 additions & 2 deletions crates/ggml/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
[package]
name = "ggml"
version = "0.1.0-rc4"
version = "0.1.1"
repository = { workspace = true }
edition = "2021"
description = "Semi-idiomatic Rust bindings for the ggml library (from `ggml-sys`)."
license = "MIT"

[dependencies]
thiserror = { workspace = true }
ggml-sys = { path = "sys", version = "0.1.0-rc4" }
ggml-sys = { path = "sys", version = "0.1.1" }

[dev-dependencies]
rand = { workspace = true }
2 changes: 1 addition & 1 deletion crates/ggml/sys/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ggml-sys"
version = "0.1.0-rc4"
version = "0.1.1"
repository = { workspace = true }
edition = "2021"
description = "Raw bindings (i.e. bindgen output) for the ggml library."
Expand Down
4 changes: 2 additions & 2 deletions crates/llm-base/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "llm-base"
version = "0.1.0-rc4"
version = "0.1.1"
license = { workspace = true }
repository = { workspace = true }
description = "The base for `llm`; provides common structure for model implementations. Not intended for use by end-users."
Expand All @@ -11,7 +11,7 @@ readme = "../../README.md"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
ggml = { path = "../ggml", version = "0.1.0-rc4" }
ggml = { path = "../ggml", version = "0.1.1" }

bytemuck = { workspace = true }
rand = { workspace = true }
Expand Down
14 changes: 7 additions & 7 deletions crates/llm/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
[package]
name = "llm"
version = "0.1.0-rc4"
version = "0.1.1"
license = { workspace = true }
repository = { workspace = true }
description = "A Rust ecosystem of libraries for running inference on large language models, inspired by llama.cpp."
edition = "2021"
readme = "../../README.md"

[dependencies]
llm-base = { path = "../llm-base", version = "0.1.0-rc4" }
llm-llama = { path = "../models/llama", features = ["convert"], optional = true, version = "0.1.0-rc4" }
llm-gpt2 = { path = "../models/gpt2", optional = true, version = "0.1.0-rc4" }
llm-gptj = { path = "../models/gptj", optional = true, version = "0.1.0-rc4" }
llm-bloom = { path = "../models/bloom", optional = true, version = "0.1.0-rc4" }
llm-neox = { path = "../models/neox", optional = true, version = "0.1.0-rc4" }
llm-base = { path = "../llm-base", version = "0.1.1" }
llm-llama = { path = "../models/llama", features = ["convert"], optional = true, version = "0.1.1" }
llm-gpt2 = { path = "../models/gpt2", optional = true, version = "0.1.1" }
llm-gptj = { path = "../models/gptj", optional = true, version = "0.1.1" }
llm-bloom = { path = "../models/bloom", optional = true, version = "0.1.1" }
llm-neox = { path = "../models/neox", optional = true, version = "0.1.1" }

[dev-dependencies]
rand = { workspace = true }
Expand Down
4 changes: 2 additions & 2 deletions crates/models/bloom/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "llm-bloom"
version = "0.1.0-rc4"
version = "0.1.1"
license = { workspace = true }
repository = { workspace = true }
description = "An implementation of BLOOM (BigScience Large Open-science Open-access Multilingual Language Model) for the `llm` ecosystem."
Expand All @@ -10,6 +10,6 @@ readme = "../../../README.md"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
llm-base = { path = "../../llm-base", version = "0.1.0-rc4" }
llm-base = { path = "../../llm-base", version = "0.1.1" }

bytemuck = { workspace = true }
4 changes: 2 additions & 2 deletions crates/models/gpt2/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
[package]
name = "llm-gpt2"
version = "0.1.0-rc4"
version = "0.1.1"
license = { workspace = true }
repository = { workspace = true }
description = "An implementation of GPT-2 for the `llm` ecosystem."
edition = "2021"
readme = "../../../README.md"

[dependencies]
llm-base = { path = "../../llm-base", version = "0.1.0-rc4" }
llm-base = { path = "../../llm-base", version = "0.1.1" }

bytemuck = { workspace = true }
4 changes: 2 additions & 2 deletions crates/models/gptj/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "llm-gptj"
version = "0.1.0-rc4"
version = "0.1.1"
license = { workspace = true }
repository = { workspace = true }
description = "An implementation of GPT-J for the `llm` ecosystem."
Expand All @@ -10,6 +10,6 @@ readme = "../../../README.md"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
llm-base = { path = "../../llm-base", version = "0.1.0-rc4" }
llm-base = { path = "../../llm-base", version = "0.1.1" }

bytemuck = { workspace = true }
4 changes: 2 additions & 2 deletions crates/models/llama/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "llm-llama"
version = "0.1.0-rc4"
version = "0.1.1"
license = { workspace = true }
repository = { workspace = true }
description = "An implementation of LLaMA (Large Language Model Meta AI) for the `llm` ecosystem."
Expand All @@ -10,7 +10,7 @@ readme = "../../../README.md"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
llm-base = { path = "../../llm-base", version = "0.1.0-rc4" }
llm-base = { path = "../../llm-base", version = "0.1.1" }

bytemuck = { workspace = true }
rand = { workspace = true }
Expand Down
4 changes: 2 additions & 2 deletions crates/models/neox/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "llm-neox"
version = "0.1.0-rc4"
version = "0.1.1"
license = { workspace = true }
repository = { workspace = true }
description = "An implementation of GPT-NeoX for the `llm` ecosystem."
Expand All @@ -10,6 +10,6 @@ readme = "../../../README.md"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
llm-base = { path = "../../llm-base", version = "0.1.0-rc4" }
llm-base = { path = "../../llm-base", version = "0.1.1" }

bytemuck = { workspace = true }

0 comments on commit bcb88e8

Please sign in to comment.