chore: release

This commit is contained in:
github-actions[bot] 2025-04-17 22:44:37 +00:00 committed by GitHub
parent 33e8fc7a65
commit 1f9d0b6aee
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
23 changed files with 98 additions and 32 deletions

22
Cargo.lock generated
View File

@ -8622,7 +8622,7 @@ checksum = "57397d16646700483b67d2dd6511d79318f9d057fdbd21a4066aeac8b41d310a"
[[package]]
name = "rig-bedrock"
version = "0.1.1"
version = "0.1.2"
dependencies = [
"anyhow",
"async-stream",
@ -8643,7 +8643,7 @@ dependencies = [
[[package]]
name = "rig-core"
version = "0.11.1"
version = "0.11.2"
dependencies = [
"anyhow",
"assert_fs",
@ -8692,7 +8692,7 @@ dependencies = [
[[package]]
name = "rig-eternalai"
version = "0.2.5"
version = "0.2.6"
dependencies = [
"anyhow",
"ethers",
@ -8708,7 +8708,7 @@ dependencies = [
[[package]]
name = "rig-fastembed"
version = "0.1.5"
version = "0.1.6"
dependencies = [
"anyhow",
"fastembed",
@ -8722,7 +8722,7 @@ dependencies = [
[[package]]
name = "rig-lancedb"
version = "0.2.9"
version = "0.2.10"
dependencies = [
"anyhow",
"arrow-array",
@ -8738,7 +8738,7 @@ dependencies = [
[[package]]
name = "rig-mongodb"
version = "0.2.9"
version = "0.2.10"
dependencies = [
"anyhow",
"futures",
@ -8755,7 +8755,7 @@ dependencies = [
[[package]]
name = "rig-neo4j"
version = "0.2.9"
version = "0.2.10"
dependencies = [
"anyhow",
"futures",
@ -8774,7 +8774,7 @@ dependencies = [
[[package]]
name = "rig-postgres"
version = "0.1.7"
version = "0.1.8"
dependencies = [
"anyhow",
"dotenvy",
@ -8795,7 +8795,7 @@ dependencies = [
[[package]]
name = "rig-qdrant"
version = "0.1.12"
version = "0.1.13"
dependencies = [
"anyhow",
"httpmock",
@ -8810,7 +8810,7 @@ dependencies = [
[[package]]
name = "rig-sqlite"
version = "0.1.9"
version = "0.1.10"
dependencies = [
"anyhow",
"chrono",
@ -8829,7 +8829,7 @@ dependencies = [
[[package]]
name = "rig-surrealdb"
version = "0.1.4"
version = "0.1.5"
dependencies = [
"anyhow",
"rig-core",

View File

@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [Unreleased]
## [0.1.2](https://github.com/0xPlaygrounds/rig/compare/rig-bedrock-v0.1.1...rig-bedrock-v0.1.2) - 2025-04-17
### Added
- support custom clients for bedrock ([#403](https://github.com/0xPlaygrounds/rig/pull/403))
## [0.1.1](https://github.com/0xPlaygrounds/rig/compare/rig-bedrock-v0.1.0...rig-bedrock-v0.1.1) - 2025-04-12
### Other

View File

@ -1,13 +1,13 @@
[package]
name = "rig-bedrock"
version = "0.1.1"
version = "0.1.2"
edition = "2021"
license = "MIT"
readme = "README.md"
description = "AWS Bedrock model provider for Rig integration."
[dependencies]
rig-core = { version = "0.11.1", path = "../rig-core", features = ["image"] }
rig-core = { version = "0.11.2", path = "../rig-core", features = ["image"] }
rig-derive = { path = "../rig-core/rig-core-derive", version = "0.1.1" }
serde = { version = "1.0.193", features = ["derive"] }
serde_json = "1.0.108"

View File

@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [Unreleased]
## [0.11.2](https://github.com/0xPlaygrounds/rig/compare/rig-core-v0.11.1...rig-core-v0.11.2) - 2025-04-17
### Other
- Update agent_with_huggingface.rs ([#401](https://github.com/0xPlaygrounds/rig/pull/401))
## [0.11.1](https://github.com/0xPlaygrounds/rig/compare/rig-core-v0.11.0...rig-core-v0.11.1) - 2025-04-12
### Added

View File

@ -1,6 +1,6 @@
[package]
name = "rig-core"
version = "0.11.1"
version = "0.11.2"
edition = "2021"
license = "MIT"
readme = "README.md"

View File

@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [Unreleased]
## [0.2.6](https://github.com/0xPlaygrounds/rig/compare/rig-eternalai-v0.2.5...rig-eternalai-v0.2.6) - 2025-04-17
### Other
- updated the following local packages: rig-core
## [0.2.5](https://github.com/0xPlaygrounds/rig/compare/rig-eternalai-v0.2.4...rig-eternalai-v0.2.5) - 2025-04-12
### Other

View File

@ -1,6 +1,6 @@
[package]
name = "rig-eternalai"
version = "0.2.5"
version = "0.2.6"
edition = "2021"
license = "MIT"
readme = "README.md"
@ -8,7 +8,7 @@ description = "EternalAI model provider Rig integration."
repository = "https://github.com/0xPlaygrounds/rig"
[dependencies]
rig-core = { path = "../rig-core", version = "0.11.1" }
rig-core = { path = "../rig-core", version = "0.11.2" }
ethers = "2.0.14"
reqwest = { version = "0.12.12", features = ["json"] }
serde = { version = "1.0.193", features = ["derive"] }

View File

@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [Unreleased]
## [0.1.6](https://github.com/0xPlaygrounds/rig/compare/rig-fastembed-v0.1.5...rig-fastembed-v0.1.6) - 2025-04-17
### Other
- updated the following local packages: rig-core
## [0.1.5](https://github.com/0xPlaygrounds/rig/compare/rig-fastembed-v0.1.4...rig-fastembed-v0.1.5) - 2025-04-12
### Other

View File

@ -1,6 +1,6 @@
[package]
name = "rig-fastembed"
version = "0.1.5"
version = "0.1.6"
edition = "2021"
license = "MIT"
readme = "README.md"
@ -8,7 +8,7 @@ description = "Rig vector store index integration for Fastembed. https://github.
repository = "https://github.com/0xPlaygrounds/rig"
[dependencies]
rig-core = { path = "../rig-core", version = "0.11.1" }
rig-core = { path = "../rig-core", version = "0.11.2" }
serde = { version = "1.0.193", features = ["derive"] }
serde_json = "1.0.108"
tracing = "0.1.40"

View File

@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [Unreleased]
## [0.2.10](https://github.com/0xPlaygrounds/rig/compare/rig-lancedb-v0.2.9...rig-lancedb-v0.2.10) - 2025-04-17
### Other
- updated the following local packages: rig-core
## [0.2.9](https://github.com/0xPlaygrounds/rig/compare/rig-lancedb-v0.2.8...rig-lancedb-v0.2.9) - 2025-04-12
### Other

View File

@ -1,6 +1,6 @@
[package]
name = "rig-lancedb"
version = "0.2.9"
version = "0.2.10"
edition = "2021"
license = "MIT"
readme = "README.md"
@ -9,7 +9,7 @@ repository = "https://github.com/0xPlaygrounds/rig"
[dependencies]
lancedb = "0.18.1"
rig-core = { path = "../rig-core", version = "0.11.1" }
rig-core = { path = "../rig-core", version = "0.11.2" }
arrow-array = "54.2.1"
serde_json = "1.0.128"
serde = "1.0.210"

View File

@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [Unreleased]
## [0.2.10](https://github.com/0xPlaygrounds/rig/compare/rig-mongodb-v0.2.9...rig-mongodb-v0.2.10) - 2025-04-17
### Other
- updated the following local packages: rig-core
## [0.2.9](https://github.com/0xPlaygrounds/rig/compare/rig-mongodb-v0.2.8...rig-mongodb-v0.2.9) - 2025-04-12
### Other

View File

@ -1,6 +1,6 @@
[package]
name = "rig-mongodb"
version = "0.2.9"
version = "0.2.10"
edition = "2021"
license = "MIT"
readme = "README.md"
@ -12,7 +12,7 @@ repository = "https://github.com/0xPlaygrounds/rig"
[dependencies]
futures = "0.3.30"
mongodb = "3.1.0"
rig-core = { path = "../rig-core", version = "0.11.1" }
rig-core = { path = "../rig-core", version = "0.11.2" }
serde = { version = "1.0.203", features = ["derive"] }
serde_json = "1.0.117"
tracing = "0.1.40"

View File

@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [Unreleased]
## [0.2.10](https://github.com/0xPlaygrounds/rig/compare/rig-neo4j-v0.2.9...rig-neo4j-v0.2.10) - 2025-04-17
### Other
- updated the following local packages: rig-core
## [0.2.9](https://github.com/0xPlaygrounds/rig/compare/rig-neo4j-v0.2.8...rig-neo4j-v0.2.9) - 2025-04-12
### Other

View File

@ -1,6 +1,6 @@
[package]
name = "rig-neo4j"
version = "0.2.9"
version = "0.2.10"
edition = "2021"
license = "MIT"
readme = "README.md"
@ -12,7 +12,7 @@ repository = "https://github.com/0xPlaygrounds/rig"
[dependencies]
futures = "0.3.30"
neo4rs = "0.8.0"
rig-core = { path = "../rig-core", version = "0.11.1" }
rig-core = { path = "../rig-core", version = "0.11.2" }
serde = { version = "1.0.203", features = ["derive"] }
serde_json = "1.0.117"
tracing = "0.1.40"

View File

@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [Unreleased]
## [0.1.8](https://github.com/0xPlaygrounds/rig/compare/rig-postgres-v0.1.7...rig-postgres-v0.1.8) - 2025-04-17
### Other
- updated the following local packages: rig-core
## [0.1.7](https://github.com/0xPlaygrounds/rig/compare/rig-postgres-v0.1.6...rig-postgres-v0.1.7) - 2025-04-12
### Other

View File

@ -1,6 +1,6 @@
[package]
name = "rig-postgres"
version = "0.1.7"
version = "0.1.8"
edition = "2021"
description = "PostgreSQL-based vector store implementation for the rig framework"
license = "MIT"
@ -8,7 +8,7 @@ readme = "README.md"
repository = "https://github.com/0xPlaygrounds/rig"
[dependencies]
rig-core = { path = "../rig-core", version = "0.11.1", features = ["derive"] }
rig-core = { path = "../rig-core", version = "0.11.2", features = ["derive"] }
serde = { version = "1.0.215", features = ["derive"] }
serde_json = "1.0.133"

View File

@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [Unreleased]
## [0.1.13](https://github.com/0xPlaygrounds/rig/compare/rig-qdrant-v0.1.12...rig-qdrant-v0.1.13) - 2025-04-17
### Other
- updated the following local packages: rig-core
## [0.1.12](https://github.com/0xPlaygrounds/rig/compare/rig-qdrant-v0.1.11...rig-qdrant-v0.1.12) - 2025-04-12
### Other

View File

@ -1,6 +1,6 @@
[package]
name = "rig-qdrant"
version = "0.1.12"
version = "0.1.13"
edition = "2021"
license = "MIT"
readme = "README.md"
@ -8,7 +8,7 @@ description = "Rig vector store index integration for Qdrant. https://qdrant.tec
repository = "https://github.com/0xPlaygrounds/rig"
[dependencies]
rig-core = { path = "../rig-core", version = "0.11.1" }
rig-core = { path = "../rig-core", version = "0.11.2" }
serde_json = "1.0.128"
serde = "1.0.210"
qdrant-client = "1.13.0"

View File

@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [Unreleased]
## [0.1.10](https://github.com/0xPlaygrounds/rig/compare/rig-sqlite-v0.1.9...rig-sqlite-v0.1.10) - 2025-04-17
### Other
- updated the following local packages: rig-core
## [0.1.9](https://github.com/0xPlaygrounds/rig/compare/rig-sqlite-v0.1.8...rig-sqlite-v0.1.9) - 2025-04-12
### Other

View File

@ -1,6 +1,6 @@
[package]
name = "rig-sqlite"
version = "0.1.9"
version = "0.1.10"
edition = "2021"
description = "SQLite-based vector store implementation for the rig framework"
license = "MIT"
@ -9,7 +9,7 @@ license = "MIT"
doctest = false
[dependencies]
rig-core = { path = "../rig-core", version = "0.11.1", features = ["derive"] }
rig-core = { path = "../rig-core", version = "0.11.2", features = ["derive"] }
rusqlite = { version = "0.32", features = ["bundled"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"

View File

@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [Unreleased]
## [0.1.5](https://github.com/0xPlaygrounds/rig/compare/rig-surrealdb-v0.1.4...rig-surrealdb-v0.1.5) - 2025-04-17
### Other
- updated the following local packages: rig-core
## [0.1.4](https://github.com/0xPlaygrounds/rig/compare/rig-surrealdb-v0.1.3...rig-surrealdb-v0.1.4) - 2025-04-12
### Other

View File

@ -1,13 +1,13 @@
[package]
name = "rig-surrealdb"
version = "0.1.4"
version = "0.1.5"
edition = "2021"
description = "SurrealDB vector store implementation for the rig framework"
license = "MIT"
[dependencies]
surrealdb = { version = "2.1.4", features = ["protocol-ws", "kv-mem"] }
rig-core = { path = "../rig-core", version = "0.11.1", features = ["derive"] }
rig-core = { path = "../rig-core", version = "0.11.2", features = ["derive"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
tracing = "0.1"