Skip to content

Commit 64436c8

Browse files
github-actions[bot]release-plz
andauthored
chore: release (#125)
Co-authored-by: release-plz <release-plz@github.com>
1 parent 52bc6ff commit 64436c8

File tree

13 files changed

+86
-14
lines changed

13 files changed

+86
-14
lines changed

Cargo.lock

Lines changed: 5 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# Changelog
2+
All notable changes to this project will be documented in this file.
3+
4+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
5+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
6+
7+
## [Unreleased]
8+
9+
## [0.9.2](https://github.com/sobelio/llm-chain/compare/llm-chain-llama-sys-v0.9.1...llm-chain-llama-sys-v0.9.2) - 2023-05-10
10+
11+
### Other
12+
- Restructuring (#124)

crates/llm-chain-llama-sys/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "llm-chain-llama-sys"
33
description = "A library with bindings based on bindgen for LLaMA.cpp"
4-
version = "0.9.1"
4+
version = "0.9.2"
55
edition = "2021"
66
license = "MIT"
77
keywords = ["llm", "langchain", "llama", "chain"]
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# Changelog
2+
All notable changes to this project will be documented in this file.
3+
4+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
5+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
6+
7+
## [Unreleased]
8+
9+
## [0.9.2](https://github.com/sobelio/llm-chain/compare/llm-chain-llama-v0.9.1...llm-chain-llama-v0.9.2) - 2023-05-10
10+
11+
### Other
12+
- Restructuring (#124)

crates/llm-chain-llama/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "llm-chain-llama"
3-
version = "0.9.1"
3+
version = "0.9.2"
44
edition = "2021"
55
description = "A library implementing `llm-chains` for LLamA. Chains can be use to apply the model series to complete complex tasks, such as agents."
66
license = "MIT"
@@ -17,7 +17,7 @@ repository = "https://github.com/sobelio/llm-chain/"
1717
anyhow = "1.0.71"
1818
async-trait = "0.1.68"
1919
llm-chain-llama-sys = { path = "../llm-chain-llama-sys", version = "0.9" }
20-
llm-chain = { path = "../llm-chain", version = "0.9.1" }
20+
llm-chain = { path = "../llm-chain", version = "0.10.0" }
2121
serde = { version = "1.0.160", features = ["derive"] }
2222
thiserror = "1.0.40"
2323

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# Changelog
2+
All notable changes to this project will be documented in this file.
3+
4+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
5+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
6+
7+
## [Unreleased]
8+
9+
## [0.9.0](https://github.com/sobelio/llm-chain/releases/tag/llm-chain-local-v0.9.0) - 2023-05-10
10+
11+
### Other
12+
- Restructuring (#124)

crates/llm-chain-local/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ repository = "https://github.com/sobelio/llm-chain/"
1414
[dependencies]
1515
async-trait = "0.1.68"
1616
llm = "0.1.1"
17-
llm-chain = { path = "../llm-chain", version = "0.9.0", default-features = false }
17+
llm-chain = { path = "../llm-chain", version = "0.10.0", default-features = false }
1818
rand = "0.8.5"
1919
serde = { version = "1.0.160", features = ["derive"] }
2020
thiserror = "1.0.40"
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# Changelog
2+
All notable changes to this project will be documented in this file.
3+
4+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
5+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
6+
7+
## [Unreleased]
8+
9+
## [0.9.2](https://github.com/sobelio/llm-chain/compare/llm-chain-openai-v0.9.1...llm-chain-openai-v0.9.2) - 2023-05-10
10+
11+
### Other
12+
- Restructuring (#124)

crates/llm-chain-openai/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "llm-chain-openai"
3-
version = "0.9.1"
3+
version = "0.9.2"
44
edition = "2021"
55
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."
66
license = "MIT"
@@ -16,7 +16,7 @@ repository = "https://github.com/sobelio/llm-chain/"
1616
futures = "0.3.28"
1717
async-openai = "0.10.3"
1818
async-trait = "0.1.68"
19-
llm-chain = { path = "../llm-chain", version = "0.9.1", default-features = false }
19+
llm-chain = { path = "../llm-chain", version = "0.10.0", default-features = false }
2020
serde = { version = "1.0.160" }
2121
tiktoken-rs = { version = "0.4.2", features = ["async-openai"] }
2222
thiserror = "1.0.40"
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# Changelog
2+
All notable changes to this project will be documented in this file.
3+
4+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
5+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
6+
7+
## [Unreleased]
8+
9+
## [0.9.2](https://github.com/sobelio/llm-chain/compare/llm-chain-qdrant-v0.9.1...llm-chain-qdrant-v0.9.2) - 2023-05-10
10+
11+
### Other
12+
- updated the following local packages: llm-chain

0 commit comments

Comments
 (0)