Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1,066 changes: 1,066 additions & 0 deletions CHANGELOG.md

Large diffs are not rendered by default.

36 changes: 18 additions & 18 deletions Cargo.lock

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

34 changes: 17 additions & 17 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -121,23 +121,23 @@ exclude-members = ["crates/rig-core", "crates/rig-derive"]
workspace = true

[dependencies]
rig-core = { path = "crates/rig-core", version = "0.36.0", default-features = false }
rig-bedrock = { path = "crates/rig-bedrock", version = "0.4.5", optional = true, default-features = false }
rig-fastembed = { path = "crates/rig-fastembed", version = "0.4.0", optional = true, default-features = false }
rig-gemini-grpc = { path = "crates/rig-gemini-grpc", version = "0.2.5", optional = true, default-features = false }
rig-helixdb = { path = "crates/rig-helixdb", version = "0.2.5", optional = true, default-features = false }
rig-lancedb = { path = "crates/rig-lancedb", version = "0.4.5", optional = true, default-features = false }
rig-milvus = { path = "crates/rig-milvus", version = "0.2.5", optional = true, default-features = false }
rig-mongodb = { path = "crates/rig-mongodb", version = "0.4.5", optional = true, default-features = false }
rig-neo4j = { path = "crates/rig-neo4j", version = "0.5.5", optional = true, default-features = false }
rig-postgres = { path = "crates/rig-postgres", version = "0.2.5", optional = true, default-features = false }
rig-qdrant = { path = "crates/rig-qdrant", version = "0.2.5", optional = true, default-features = false }
rig-s3vectors = { path = "crates/rig-s3vectors", version = "0.2.5", optional = true, default-features = false }
rig-scylladb = { path = "crates/rig-scylladb", version = "0.2.5", optional = true, default-features = false }
rig-sqlite = { path = "crates/rig-sqlite", version = "0.2.5", optional = true, default-features = false }
rig-surrealdb = { path = "crates/rig-surrealdb", version = "0.2.5", optional = true, default-features = false }
rig-vectorize = { path = "crates/rig-vectorize", version = "0.2.5", optional = true, default-features = false }
rig-vertexai = { path = "crates/rig-vertexai", version = "0.3.5", optional = true, default-features = false }
rig-core = { path = "crates/rig-core", version = "0.37.0", default-features = false }
rig-bedrock = { path = "crates/rig-bedrock", version = "0.4.6", optional = true, default-features = false }
rig-fastembed = { path = "crates/rig-fastembed", version = "0.4.1", optional = true, default-features = false }
rig-gemini-grpc = { path = "crates/rig-gemini-grpc", version = "0.2.6", optional = true, default-features = false }
rig-helixdb = { path = "crates/rig-helixdb", version = "0.2.6", optional = true, default-features = false }
rig-lancedb = { path = "crates/rig-lancedb", version = "0.4.6", optional = true, default-features = false }
rig-milvus = { path = "crates/rig-milvus", version = "0.2.6", optional = true, default-features = false }
rig-mongodb = { path = "crates/rig-mongodb", version = "0.4.6", optional = true, default-features = false }
rig-neo4j = { path = "crates/rig-neo4j", version = "0.5.6", optional = true, default-features = false }
rig-postgres = { path = "crates/rig-postgres", version = "0.2.6", optional = true, default-features = false }
rig-qdrant = { path = "crates/rig-qdrant", version = "0.2.6", optional = true, default-features = false }
rig-s3vectors = { path = "crates/rig-s3vectors", version = "0.2.6", optional = true, default-features = false }
rig-scylladb = { path = "crates/rig-scylladb", version = "0.2.6", optional = true, default-features = false }
rig-sqlite = { path = "crates/rig-sqlite", version = "0.2.6", optional = true, default-features = false }
rig-surrealdb = { path = "crates/rig-surrealdb", version = "0.2.6", optional = true, default-features = false }
rig-vectorize = { path = "crates/rig-vectorize", version = "0.2.6", optional = true, default-features = false }
rig-vertexai = { path = "crates/rig-vertexai", version = "0.3.6", optional = true, default-features = false }

[dev-dependencies]
anyhow = { workspace = true }
Expand Down
9 changes: 9 additions & 0 deletions crates/rig-bedrock/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,15 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]
## [0.4.6](https://github.com/0xPlaygrounds/rig/compare/rig-bedrock-v0.4.5...rig-bedrock-v0.4.6) - 2026-04-30

### Other

- improve project organization and create rig crate ([#1699](https://github.com/0xPlaygrounds/rig/pull/1699)) (by @gold-silver-copper) - #1699

### Contributors

* @gold-silver-copper
## [0.4.5](https://github.com/0xPlaygrounds/rig/compare/rig-bedrock-v0.4.4...rig-bedrock-v0.4.5) - 2026-04-28

### Fixed
Expand Down
6 changes: 3 additions & 3 deletions crates/rig-bedrock/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rig-bedrock"
version = "0.4.5"
version = "0.4.6"
edition = { workspace = true }
license = "MIT"
readme = "README.md"
Expand All @@ -18,11 +18,11 @@ aws-config = { workspace = true, features = ["behavior-version-latest"] }
aws-sdk-bedrockruntime = { workspace = true, features = ["rt-tokio", "default-https-client"] }
aws-smithy-types = { workspace = true }
base64 = { workspace = true }
rig-core = { path = "../rig-core", version = "0.36.0", default-features = false, features = [
rig-core = { path = "../rig-core", version = "0.37.0", default-features = false, features = [
"image",
] }
nanoid = { workspace = true }
rig-derive = { path = "../rig-derive", version = "0.1.13" }
rig-derive = { path = "../rig-derive", version = "0.1.14" }
schemars = { workspace = true }
serde = { workspace = true, features = ["derive"] }
serde_json = { workspace = true }
Expand Down
9 changes: 9 additions & 0 deletions crates/rig-core/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,15 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]
## [0.37.0](https://github.com/0xPlaygrounds/rig/compare/rig-core-v0.36.0...rig-core-v0.37.0) - 2026-04-30

### Other

- improve project organization and create rig crate ([#1699](https://github.com/0xPlaygrounds/rig/pull/1699)) (by @gold-silver-copper) - #1699

### Contributors

* @gold-silver-copper
## [0.36.0](https://github.com/0xPlaygrounds/rig/compare/rig-core-v0.35.0...rig-core-v0.36.0) - 2026-04-28

### Added
Expand Down
4 changes: 2 additions & 2 deletions crates/rig-core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rig-core"
version = "0.36.0"
version = "0.37.0"
edition = { workspace = true }
license = "MIT"
readme = "README.md"
Expand Down Expand Up @@ -33,7 +33,7 @@ ordered-float = { workspace = true }
quick-xml = { workspace = true, optional = true }
rayon = { workspace = true, optional = true }
reqwest = { workspace = true, features = ["json", "stream", "multipart"] }
rig-derive = { version = "0.1.13", path = "../rig-derive", optional = true }
rig-derive = { version = "0.1.14", path = "../rig-derive", optional = true }
schemars = { workspace = true }
serde = { workspace = true, features = ["derive"] }
serde_json = { workspace = true }
Expand Down
9 changes: 9 additions & 0 deletions crates/rig-derive/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,15 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]
## [0.1.14](https://github.com/0xPlaygrounds/rig/compare/rig-derive-v0.1.13...rig-derive-v0.1.14) - 2026-04-30

### Other

- improve project organization and create rig crate ([#1699](https://github.com/0xPlaygrounds/rig/pull/1699)) (by @gold-silver-copper) - #1699

### Contributors

* @gold-silver-copper
## [0.1.13](https://github.com/0xPlaygrounds/rig/compare/rig-derive-v0.1.12...rig-derive-v0.1.13) - 2026-04-28

### Added
Expand Down
2 changes: 1 addition & 1 deletion crates/rig-derive/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rig-derive"
version = "0.1.13"
version = "0.1.14"
edition = { workspace = true }
license = "MIT"
description = "Internal crate that implements Rig derive macros."
Expand Down
9 changes: 9 additions & 0 deletions crates/rig-fastembed/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,15 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]
## [0.4.1](https://github.com/0xPlaygrounds/rig/compare/rig-fastembed-v0.4.0...rig-fastembed-v0.4.1) - 2026-04-30

### Other

- improve project organization and create rig crate ([#1699](https://github.com/0xPlaygrounds/rig/pull/1699)) (by @gold-silver-copper) - #1699

### Contributors

* @gold-silver-copper
## [0.4.0](https://github.com/0xPlaygrounds/rig/compare/rig-fastembed-v0.3.4...rig-fastembed-v0.4.0) - 2026-04-28

### Added
Expand Down
4 changes: 2 additions & 2 deletions crates/rig-fastembed/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rig-fastembed"
version = "0.4.0"
version = "0.4.1"
edition = { workspace = true }
license = "MIT"
readme = "README.md"
Expand All @@ -11,7 +11,7 @@ repository = "https://github.com/0xPlaygrounds/rig"
workspace = true

[dependencies]
rig-core = { path = "../rig-core", version = "0.36.0", default-features = false }
rig-core = { path = "../rig-core", version = "0.37.0", default-features = false }
serde = { workspace = true, features = ["derive"] }
serde_json = { workspace = true }
tracing = { workspace = true }
Expand Down
11 changes: 10 additions & 1 deletion crates/rig-gemini-grpc/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,16 @@
All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).## [0.2.6](https://github.com/0xPlaygrounds/rig/compare/rig-gemini-grpc-v0.2.5...rig-gemini-grpc-v0.2.6) - 2026-04-30

### Other

- improve project organization and create rig crate ([#1699](https://github.com/0xPlaygrounds/rig/pull/1699)) (by @gold-silver-copper) - #1699

### Contributors

* @gold-silver-copper

## [0.2.5](https://github.com/0xPlaygrounds/rig/compare/rig-gemini-grpc-v0.2.4...rig-gemini-grpc-v0.2.5) - 2026-04-28

### Other
Expand Down
4 changes: 2 additions & 2 deletions crates/rig-gemini-grpc/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rig-gemini-grpc"
version = "0.2.5"
version = "0.2.6"
edition.workspace = true
license = "MIT"
readme = "README.md"
Expand All @@ -11,7 +11,7 @@ repository = "https://github.com/0xPlaygrounds/rig"
workspace = true

[dependencies]
rig-core = { path = "../rig-core", version = "0.36.0", default-features = false }
rig-core = { path = "../rig-core", version = "0.37.0", default-features = false }
async-stream = { workspace = true }
base64 = { workspace = true }
futures = { workspace = true }
Expand Down
9 changes: 9 additions & 0 deletions crates/rig-helixdb/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,15 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]
## [0.2.6](https://github.com/0xPlaygrounds/rig/compare/rig-helixdb-v0.2.5...rig-helixdb-v0.2.6) - 2026-04-30

### Other

- improve project organization and create rig crate ([#1699](https://github.com/0xPlaygrounds/rig/pull/1699)) (by @gold-silver-copper) - #1699

### Contributors

* @gold-silver-copper
## [0.2.5](https://github.com/0xPlaygrounds/rig/compare/rig-helixdb-v0.2.4...rig-helixdb-v0.2.5) - 2026-04-28

### Added
Expand Down
4 changes: 2 additions & 2 deletions crates/rig-helixdb/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rig-helixdb"
version = "0.2.5"
version = "0.2.6"
edition.workspace = true
license = "MIT"
readme = "README.md"
Expand All @@ -15,7 +15,7 @@ reqwest = { workspace = true, features = ["json"] }
serde = { workspace = true, features = ["derive"] }
serde_json.workspace = true
thiserror = { workspace = true }
rig-core = { path = "../rig-core", version = "0.36.0", default-features = false }
rig-core = { path = "../rig-core", version = "0.37.0", default-features = false }

[dev-dependencies]
anyhow = { workspace = true }
Expand Down
Loading