Skip to content

Commit

Permalink
chore: Release
Browse files Browse the repository at this point in the history
  • Loading branch information
williamhogman committed Nov 15, 2023
1 parent 8d858e8 commit 83939c2
Show file tree
Hide file tree
Showing 12 changed files with 31 additions and 31 deletions.
22 changes: 11 additions & 11 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 crates/llm-chain-hnsw/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "llm-chain-hnsw"
version = "0.12.3"
version = "0.13.0"
edition = "2021"
description = "For using hnsw with llm-chain"
license = "MIT"
Expand All @@ -15,7 +15,7 @@ repository = "https://github.com/sobelio/llm-chain/"
[dependencies]
async-trait.workspace = true
hnsw_rs = "0.1.19"
llm-chain = { path = "../llm-chain", version = "0.12.0", default-features = false }
llm-chain = { path = "../llm-chain", version = "0.13.0", default-features = false }
serde.workspace = true
serde_json.workspace = true
thiserror.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion crates/llm-chain-llama-sys/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "llm-chain-llama-sys"
description = "A library with bindings based on bindgen for LLaMA.cpp"
version = "0.12.3"
version = "0.13.0"
edition = "2021"
license = "MIT"
keywords = ["llm", "langchain", "llama", "chain"]
Expand Down
6 changes: 3 additions & 3 deletions crates/llm-chain-llama/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "llm-chain-llama"
version = "0.12.3"
version = "0.13.0"
edition = "2021"
description = "A library implementing `llm-chains` for LLamA. Chains can be use to apply the model series to complete complex tasks, such as agents."
license = "MIT"
Expand All @@ -16,8 +16,8 @@ repository = "https://github.com/sobelio/llm-chain/"
[dependencies]
anyhow.workspace = true
async-trait.workspace = true
llm-chain-llama-sys = { path = "../llm-chain-llama-sys", version = "0.12" }
llm-chain = { path = "../llm-chain", version = "0.12.0" }
llm-chain-llama-sys = { path = "../llm-chain-llama-sys", version = "0.13" }
llm-chain = { path = "../llm-chain", version = "0.13.0" }
serde = { version = "1.0.163", features = ["derive"] }
thiserror.workspace = true
lazy_static = "1.4.0"
Expand Down
4 changes: 2 additions & 2 deletions crates/llm-chain-local/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "llm-chain-local"
version = "0.12.3"
version = "0.13.0"
edition = "2021"
description = "Use `llm-chain` with a local [`llm`](https://github.com/rustformers/llm) backend."
license = "MIT"
Expand All @@ -15,7 +15,7 @@ repository = "https://github.com/sobelio/llm-chain/"
async-trait.workspace = true
lazy_static.workspace = true
llm = "0.1.1"
llm-chain = { path = "../llm-chain", version = "0.12.3", default-features = false }
llm-chain = { path = "../llm-chain", version = "0.13.0", default-features = false }
rand = "0.8.5"
serde.workspace = true
thiserror.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion crates/llm-chain-macros/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "llm-chain-macros"
version = "0.12.3"
version = "0.13.0"
edition = "2021"
license = "MIT"
description = "Set of macros for use with llm-chain"
Expand Down
4 changes: 2 additions & 2 deletions crates/llm-chain-milvus/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "llm-chain-milvus"
version = "0.12.3"
version = "0.13.0"
edition = "2021"
license = "MIT"
description = "Driver for the Milvus vector store"
Expand All @@ -13,7 +13,7 @@ repository = "https://github.com/sobelio/llm-chain/"
[dependencies]
anyhow = "1.0.72"
async-trait = "0.1.68"
llm-chain = { path = "../llm-chain", version = "0.12.3", default-features = false }
llm-chain = { path = "../llm-chain", version = "0.13.0", default-features = false }
serde = "1.0.164"
serde_json = "1.0.99"
thiserror = "1.0.40"
Expand Down
4 changes: 2 additions & 2 deletions crates/llm-chain-mock/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "llm-chain-mock"
version = "0.12.3"
version = "0.13.0"
edition = "2021"
description = "Use `llm-chain` with a mock backend. Useful for testing."
license = "MIT"
Expand All @@ -13,7 +13,7 @@ repository = "https://github.com/sobelio/llm-chain/"

[dependencies]
async-trait = "0.1.68"
llm-chain = { path = "../llm-chain", version = "0.12.3", default-features = false }
llm-chain = { path = "../llm-chain", version = "0.13.0", default-features = false }
thiserror = "1.0.40"

[dev-dependencies]
Expand Down
4 changes: 2 additions & 2 deletions crates/llm-chain-openai/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "llm-chain-openai"
version = "0.12.3"
version = "0.13.0"
edition = "2021"
description = "A library implementing `llm-chains` for OpenAI's models. Chains can be use to apply the model series to complete complex tasks, such as text summation."
license = "MIT"
Expand All @@ -16,7 +16,7 @@ repository = "https://github.com/sobelio/llm-chain/"
futures = "0.3.28"
async-openai = "0.16.2"
async-trait.workspace = true
llm-chain = { path = "../llm-chain", version = "0.12.0", default-features = false }
llm-chain = { path = "../llm-chain", version = "0.13.0", default-features = false }
serde.workspace = true
strum = "0.24"
strum_macros = "0.24"
Expand Down
4 changes: 2 additions & 2 deletions crates/llm-chain-qdrant/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "llm-chain-qdrant"
version = "0.12.3"
version = "0.13.0"
edition = "2021"
description = "For using Qdrant with llm-chain"
license = "MIT"
Expand All @@ -15,7 +15,7 @@ repository = "https://github.com/sobelio/llm-chain/"
[dependencies]
anyhow.workspace = true
async-trait.workspace = true
llm-chain = { path = "../llm-chain", version = "0.12.0", default-features = false }
llm-chain = { path = "../llm-chain", version = "0.13.0", default-features = false }
qdrant-client = "1.1.2"
serde.workspace = true
serde_json.workspace = true
Expand Down
4 changes: 2 additions & 2 deletions crates/llm-chain-sagemaker-endpoint/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "llm-chain-sagemaker-endpoint"
version = "0.12.3"
version = "0.13.0"
edition = "2021"
description = "Use `llm-chain` with a SageMaker Endpoint backend."
license = "MIT"
Expand All @@ -16,7 +16,7 @@ async-trait = "0.1.68"
aws-config = "0.56.0"
aws-sdk-sagemakerruntime = "0.34.0"
futures = "0.3.28"
llm-chain = { path = "../llm-chain", version = "0.12.3", default-features = false }
llm-chain = { path = "../llm-chain", version = "0.13.0", default-features = false }
serde = "1.0.183"
serde_json = "1.0.104"
serde_with = "3.2.0"
Expand Down
2 changes: 1 addition & 1 deletion crates/llm-chain/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "llm-chain"
version = "0.12.3"
version = "0.13.0"
edition = "2021"
description = "A library for running chains of LLMs (such as ChatGPT) in series to complete complex tasks, such as text summation."
license = "MIT"
Expand Down

0 comments on commit 83939c2

Please sign in to comment.