Skip to content

Commit 8c12b16

Browse files
chore: release (#402)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent 767a15c commit 8c12b16

File tree

25 files changed

+130
-36
lines changed

25 files changed

+130
-36
lines changed

Cargo.lock

Lines changed: 12 additions & 12 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

rig-bedrock/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.1.2](https://github.com/0xPlaygrounds/rig/compare/rig-bedrock-v0.1.1...rig-bedrock-v0.1.2) - 2025-04-29
11+
12+
### Added
13+
14+
- multi-turn / reasoning loops + parallel tool calling ([#370](https://github.com/0xPlaygrounds/rig/pull/370))
15+
- support custom clients for bedrock ([#403](https://github.com/0xPlaygrounds/rig/pull/403))
16+
1017
## [0.1.1](https://github.com/0xPlaygrounds/rig/compare/rig-bedrock-v0.1.0...rig-bedrock-v0.1.1) - 2025-04-12
1118

1219
### Other

rig-bedrock/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
[package]
22
name = "rig-bedrock"
3-
version = "0.1.1"
3+
version = "0.1.2"
44
edition = "2021"
55
license = "MIT"
66
readme = "README.md"
77
description = "AWS Bedrock model provider for Rig integration."
88

99
[dependencies]
10-
rig-core = { version = "0.11.1", path = "../rig-core", features = ["image"] }
11-
rig-derive = { path = "../rig-core/rig-core-derive", version = "0.1.1" }
10+
rig-core = { version = "0.12.0", path = "../rig-core", features = ["image"] }
11+
rig-derive = { path = "../rig-core/rig-core-derive", version = "0.1.2" }
1212
serde = { version = "1.0.193", features = ["derive"] }
1313
serde_json = "1.0.108"
1414
schemars = "0.8.16"

rig-core/CHANGELOG.md

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,29 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.12.0](https://github.com/0xPlaygrounds/rig/compare/rig-core-v0.11.1...rig-core-v0.12.0) - 2025-04-29
11+
12+
### Added
13+
14+
- add gpt-image-1 ([#418](https://github.com/0xPlaygrounds/rig/pull/418))
15+
- multi-turn / reasoning loops + parallel tool calling ([#370](https://github.com/0xPlaygrounds/rig/pull/370))
16+
17+
### Fixed
18+
19+
- system and developer messages for openai ([#430](https://github.com/0xPlaygrounds/rig/pull/430))
20+
- o-series models + constants ([#426](https://github.com/0xPlaygrounds/rig/pull/426))
21+
- dynamically pull rag text from chat history ([#425](https://github.com/0xPlaygrounds/rig/pull/425))
22+
- rig tool macro struct not public ([#409](https://github.com/0xPlaygrounds/rig/pull/409))
23+
- function call conversion typo ([#415](https://github.com/0xPlaygrounds/rig/pull/415))
24+
- deepseek function call conversion typo ([#414](https://github.com/0xPlaygrounds/rig/pull/414))
25+
26+
### Other
27+
28+
- Donot use async closure + Bump mcp-core ([#428](https://github.com/0xPlaygrounds/rig/pull/428))
29+
- Remove broken xAI reference link in embedding.rs ([#427](https://github.com/0xPlaygrounds/rig/pull/427))
30+
- Style/trace gemini embedding ([#411](https://github.com/0xPlaygrounds/rig/pull/411))
31+
- Update agent_with_huggingface.rs ([#401](https://github.com/0xPlaygrounds/rig/pull/401))
32+
1033
## [0.11.1](https://github.com/0xPlaygrounds/rig/compare/rig-core-v0.11.0...rig-core-v0.11.1) - 2025-04-12
1134

1235
### Added

rig-core/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rig-core"
3-
version = "0.11.1"
3+
version = "0.12.0"
44
edition = "2021"
55
license = "MIT"
66
readme = "README.md"
@@ -27,7 +27,7 @@ futures = "0.3.29"
2727
ordered-float = "4.2.0"
2828
schemars = "0.8.16"
2929
thiserror = "1.0.61"
30-
rig-derive = { version = "0.1.1", path = "./rig-core-derive", optional = true }
30+
rig-derive = { version = "0.1.2", path = "./rig-core-derive", optional = true }
3131
glob = "0.3.1"
3232
lopdf = { version = "0.35.0", optional = true }
3333
epub = { version = "2.1.2", optional = true }

rig-core/rig-core-derive/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.1.2](https://github.com/0xPlaygrounds/rig/compare/rig-derive-v0.1.1...rig-derive-v0.1.2) - 2025-04-29
11+
12+
### Fixed
13+
14+
- rig tool macro struct not public ([#409](https://github.com/0xPlaygrounds/rig/pull/409))
15+
1016
## [0.1.1](https://github.com/0xPlaygrounds/rig/compare/rig-derive-v0.1.0...rig-derive-v0.1.1) - 2025-04-12
1117

1218
### Added

rig-core/rig-core-derive/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rig-derive"
3-
version = "0.1.1"
3+
version = "0.1.2"
44
edition = "2021"
55
license = "MIT"
66
description = "Internal crate that implements Rig derive macros."

rig-eternalai/CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.2.6](https://github.com/0xPlaygrounds/rig/compare/rig-eternalai-v0.2.5...rig-eternalai-v0.2.6) - 2025-04-29
11+
12+
### Added
13+
14+
- multi-turn / reasoning loops + parallel tool calling ([#370](https://github.com/0xPlaygrounds/rig/pull/370))
15+
16+
### Fixed
17+
18+
- function call conversion typo ([#415](https://github.com/0xPlaygrounds/rig/pull/415))
19+
1020
## [0.2.5](https://github.com/0xPlaygrounds/rig/compare/rig-eternalai-v0.2.4...rig-eternalai-v0.2.5) - 2025-04-12
1121

1222
### Other

rig-eternalai/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
[package]
22
name = "rig-eternalai"
3-
version = "0.2.5"
3+
version = "0.2.6"
44
edition = "2021"
55
license = "MIT"
66
readme = "README.md"
77
description = "EternalAI model provider Rig integration."
88
repository = "https://github.com/0xPlaygrounds/rig"
99

1010
[dependencies]
11-
rig-core = { path = "../rig-core", version = "0.11.1" }
11+
rig-core = { path = "../rig-core", version = "0.12.0" }
1212
ethers = "2.0.14"
1313
reqwest = { version = "0.12.12", features = ["json"] }
1414
serde = { version = "1.0.193", features = ["derive"] }

rig-fastembed/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.1.6](https://github.com/0xPlaygrounds/rig/compare/rig-fastembed-v0.1.5...rig-fastembed-v0.1.6) - 2025-04-29
11+
12+
### Other
13+
14+
- updated the following local packages: rig-core
15+
1016
## [0.1.5](https://github.com/0xPlaygrounds/rig/compare/rig-fastembed-v0.1.4...rig-fastembed-v0.1.5) - 2025-04-12
1117

1218
### Other

rig-fastembed/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
[package]
22
name = "rig-fastembed"
3-
version = "0.1.5"
3+
version = "0.1.6"
44
edition = "2021"
55
license = "MIT"
66
readme = "README.md"
77
description = "Rig vector store index integration for Fastembed. https://github.com/Anush008/fastembed-rs"
88
repository = "https://github.com/0xPlaygrounds/rig"
99

1010
[dependencies]
11-
rig-core = { path = "../rig-core", version = "0.11.1" }
11+
rig-core = { path = "../rig-core", version = "0.12.0" }
1212
serde = { version = "1.0.193", features = ["derive"] }
1313
serde_json = "1.0.108"
1414
tracing = "0.1.40"

rig-lancedb/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.2.10](https://github.com/0xPlaygrounds/rig/compare/rig-lancedb-v0.2.9...rig-lancedb-v0.2.10) - 2025-04-29
11+
12+
### Other
13+
14+
- updated the following local packages: rig-core
15+
1016
## [0.2.9](https://github.com/0xPlaygrounds/rig/compare/rig-lancedb-v0.2.8...rig-lancedb-v0.2.9) - 2025-04-12
1117

1218
### Other

rig-lancedb/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rig-lancedb"
3-
version = "0.2.9"
3+
version = "0.2.10"
44
edition = "2021"
55
license = "MIT"
66
readme = "README.md"
@@ -9,7 +9,7 @@ repository = "https://github.com/0xPlaygrounds/rig"
99

1010
[dependencies]
1111
lancedb = "0.18.1"
12-
rig-core = { path = "../rig-core", version = "0.11.1" }
12+
rig-core = { path = "../rig-core", version = "0.12.0" }
1313
arrow-array = "54.2.1"
1414
serde_json = "1.0.128"
1515
serde = "1.0.210"

rig-mongodb/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.2.10](https://github.com/0xPlaygrounds/rig/compare/rig-mongodb-v0.2.9...rig-mongodb-v0.2.10) - 2025-04-29
11+
12+
### Other
13+
14+
- updated the following local packages: rig-core
15+
1016
## [0.2.9](https://github.com/0xPlaygrounds/rig/compare/rig-mongodb-v0.2.8...rig-mongodb-v0.2.9) - 2025-04-12
1117

1218
### Other

rig-mongodb/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rig-mongodb"
3-
version = "0.2.9"
3+
version = "0.2.10"
44
edition = "2021"
55
license = "MIT"
66
readme = "README.md"
@@ -12,7 +12,7 @@ repository = "https://github.com/0xPlaygrounds/rig"
1212
[dependencies]
1313
futures = "0.3.30"
1414
mongodb = "3.1.0"
15-
rig-core = { path = "../rig-core", version = "0.11.1" }
15+
rig-core = { path = "../rig-core", version = "0.12.0" }
1616
serde = { version = "1.0.203", features = ["derive"] }
1717
serde_json = "1.0.117"
1818
tracing = "0.1.40"

rig-neo4j/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.2.10](https://github.com/0xPlaygrounds/rig/compare/rig-neo4j-v0.2.9...rig-neo4j-v0.2.10) - 2025-04-29
11+
12+
### Fixed
13+
14+
- update broken link ([#429](https://github.com/0xPlaygrounds/rig/pull/429))
15+
1016
## [0.2.9](https://github.com/0xPlaygrounds/rig/compare/rig-neo4j-v0.2.8...rig-neo4j-v0.2.9) - 2025-04-12
1117

1218
### Other

rig-neo4j/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rig-neo4j"
3-
version = "0.2.9"
3+
version = "0.2.10"
44
edition = "2021"
55
license = "MIT"
66
readme = "README.md"
@@ -12,7 +12,7 @@ repository = "https://github.com/0xPlaygrounds/rig"
1212
[dependencies]
1313
futures = "0.3.30"
1414
neo4rs = "0.8.0"
15-
rig-core = { path = "../rig-core", version = "0.11.1" }
15+
rig-core = { path = "../rig-core", version = "0.12.0" }
1616
serde = { version = "1.0.203", features = ["derive"] }
1717
serde_json = "1.0.117"
1818
tracing = "0.1.40"

rig-postgres/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.1.8](https://github.com/0xPlaygrounds/rig/compare/rig-postgres-v0.1.7...rig-postgres-v0.1.8) - 2025-04-29
11+
12+
### Other
13+
14+
- updated the following local packages: rig-core
15+
1016
## [0.1.7](https://github.com/0xPlaygrounds/rig/compare/rig-postgres-v0.1.6...rig-postgres-v0.1.7) - 2025-04-12
1117

1218
### Other

rig-postgres/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
[package]
22
name = "rig-postgres"
3-
version = "0.1.7"
3+
version = "0.1.8"
44
edition = "2021"
55
description = "PostgreSQL-based vector store implementation for the rig framework"
66
license = "MIT"
77
readme = "README.md"
88
repository = "https://github.com/0xPlaygrounds/rig"
99

1010
[dependencies]
11-
rig-core = { path = "../rig-core", version = "0.11.1", features = ["derive"] }
11+
rig-core = { path = "../rig-core", version = "0.12.0", features = ["derive"] }
1212
serde = { version = "1.0.215", features = ["derive"] }
1313
serde_json = "1.0.133"
1414

0 commit comments

Comments
 (0)