Skip to content

Commit

Permalink
chore: release (#128)
Browse files Browse the repository at this point in the history
Co-authored-by: release-plz <[email protected]>
  • Loading branch information
github-actions[bot] and release-plz authored May 11, 2023
1 parent 5fc682a commit 0a033f2
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

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

2 changes: 1 addition & 1 deletion crates/llm-chain-llama/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ repository = "https://github.com/sobelio/llm-chain/"
anyhow = "1.0.71"
async-trait = "0.1.68"
llm-chain-llama-sys = { path = "../llm-chain-llama-sys", version = "0.9" }
llm-chain = { path = "../llm-chain", version = "0.10.0" }
llm-chain = { path = "../llm-chain", version = "0.10.1" }
serde = { version = "1.0.163", features = ["derive"] }
thiserror = "1.0.40"

Expand Down
2 changes: 1 addition & 1 deletion crates/llm-chain-local/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ repository = "https://github.com/sobelio/llm-chain/"
[dependencies]
async-trait = "0.1.68"
llm = "0.1.1"
llm-chain = { path = "../llm-chain", version = "0.10.0", default-features = false }
llm-chain = { path = "../llm-chain", version = "0.10.1", default-features = false }
rand = "0.8.5"
serde = { version = "1.0.163", features = ["derive"] }
thiserror = "1.0.40"
Expand Down
2 changes: 1 addition & 1 deletion crates/llm-chain-openai/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ repository = "https://github.com/sobelio/llm-chain/"
futures = "0.3.28"
async-openai = "0.10.3"
async-trait = "0.1.68"
llm-chain = { path = "../llm-chain", version = "0.10.0", default-features = false }
llm-chain = { path = "../llm-chain", version = "0.10.1", default-features = false }
serde = { version = "1.0.163" }
tiktoken-rs = { version = "0.4.2", features = ["async-openai"] }
thiserror = "1.0.40"
Expand Down
2 changes: 1 addition & 1 deletion crates/llm-chain-qdrant/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ repository = "https://github.com/sobelio/llm-chain/"
[dependencies]
anyhow = "1.0.70"
async-trait = "0.1.68"
llm-chain = { path = "../llm-chain", version = "0.10.0", default-features = false }
llm-chain = { path = "../llm-chain", version = "0.10.1", default-features = false }
qdrant-client = "1.1.2"
serde = "1.0.163"
serde_json = "1.0.96"
Expand Down
5 changes: 5 additions & 0 deletions crates/llm-chain/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.10.1](https://github.com/sobelio/llm-chain/compare/llm-chain-v0.10.0...llm-chain-v0.10.1) - 2023-05-11

### Other
- add no-verify to release-plz

## [0.10.0](https://github.com/sobelio/llm-chain/compare/llm-chain-v0.9.1...llm-chain-v0.10.0) - 2023-05-10

### Other
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.10.0"
version = "0.10.1"
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 0a033f2

Please sign in to comment.