Skip to content

Commit 76c6517

Browse files
chore: release (0xPlaygrounds#1631)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent 3a07cb4 commit 76c6517

37 files changed

Lines changed: 321 additions & 54 deletions

File tree

Cargo.lock

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

rig-integrations/rig-bedrock/CHANGELOG.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,24 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

88
## [Unreleased]
9+
## [0.4.5](https://github.com/0xPlaygrounds/rig/compare/rig-bedrock-v0.4.4...rig-bedrock-v0.4.5) - 2026-04-28
10+
11+
### Fixed
12+
13+
- *(bedrock)* preserve adaptive-thinking signatures in streaming reasoning ([#1683](https://github.com/0xPlaygrounds/rig/pull/1683)) (by @byQuexo)
14+
- *(bedrock)* handle adaptive-thinking interactions for prompt caching and reasoning conversion ([#1675](https://github.com/0xPlaygrounds/rig/pull/1675)) (by @byQuexo)
15+
- *(bedrock)* preserve all parallel tool calls in completion response ([#1626](https://github.com/0xPlaygrounds/rig/pull/1626)) (by @aleksmeshr)
16+
17+
### Other
18+
19+
- Add clippy no panic lints ([#1663](https://github.com/0xPlaygrounds/rig/pull/1663)) (by @gold-silver-copper) - #1663
20+
- remove deprecated code ([#1633](https://github.com/0xPlaygrounds/rig/pull/1633)) (by @gold-silver-copper) - #1633
21+
22+
### Contributors
23+
24+
* @byQuexo
25+
* @gold-silver-copper
26+
* @aleksmeshr
927
## [0.4.4](https://github.com/0xPlaygrounds/rig/compare/rig-bedrock-v0.4.3...rig-bedrock-v0.4.4) - 2026-04-12
1028

1129
### Added

rig-integrations/rig-bedrock/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rig-bedrock"
3-
version = "0.4.4"
3+
version = "0.4.5"
44
edition = { workspace = true }
55
license = "MIT"
66
readme = "README.md"
@@ -18,11 +18,11 @@ aws-config = { workspace = true, features = ["behavior-version-latest"] }
1818
aws-sdk-bedrockruntime = { workspace = true, features = ["rt-tokio", "default-https-client"] }
1919
aws-smithy-types = { workspace = true }
2020
base64 = { workspace = true }
21-
rig-core = { path = "../../rig/rig-core", version = "0.35.0", default-features = false, features = [
21+
rig-core = { path = "../../rig/rig-core", version = "0.36.0", default-features = false, features = [
2222
"image",
2323
] }
2424
nanoid = { workspace = true }
25-
rig-derive = { path = "../../rig/rig-derive", version = "0.1.12" }
25+
rig-derive = { path = "../../rig/rig-derive", version = "0.1.13" }
2626
schemars = { workspace = true }
2727
serde = { workspace = true, features = ["derive"] }
2828
serde_json = { workspace = true }

rig-integrations/rig-fastembed/CHANGELOG.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,21 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

88
## [Unreleased]
9+
## [0.4.0](https://github.com/0xPlaygrounds/rig/compare/rig-fastembed-v0.3.4...rig-fastembed-v0.4.0) - 2026-04-28
10+
11+
### Added
12+
13+
- rustls by default for everything ([#1682](https://github.com/0xPlaygrounds/rig/pull/1682)) (by @gold-silver-copper) - #1682
14+
15+
### Other
16+
17+
- Add clippy no panic lints ([#1663](https://github.com/0xPlaygrounds/rig/pull/1663)) (by @gold-silver-copper) - #1663
18+
- standardize required fields handling across builders ([#1611](https://github.com/0xPlaygrounds/rig/pull/1611)) (by @isSerge) - #1611
19+
20+
### Contributors
21+
22+
* @gold-silver-copper
23+
* @isSerge
924
## [0.3.4](https://github.com/0xPlaygrounds/rig/compare/rig-fastembed-v0.3.3...rig-fastembed-v0.3.4) - 2026-04-12
1025

1126
### Other

rig-integrations/rig-fastembed/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-fastembed"
3-
version = "0.3.4"
3+
version = "0.4.0"
44
edition = { workspace = true }
55
license = "MIT"
66
readme = "README.md"
@@ -11,7 +11,7 @@ repository = "https://github.com/0xPlaygrounds/rig"
1111
workspace = true
1212

1313
[dependencies]
14-
rig-core = { path = "../../rig/rig-core", version = "0.35.0", default-features = false }
14+
rig-core = { path = "../../rig/rig-core", version = "0.36.0", default-features = false }
1515
serde = { workspace = true, features = ["derive"] }
1616
serde_json = { workspace = true }
1717
tracing = { workspace = true }

rig-integrations/rig-gemini-grpc/CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,15 @@ All notable changes to this project will be documented in this file.
44

55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7+
## [0.2.5](https://github.com/0xPlaygrounds/rig/compare/rig-gemini-grpc-v0.2.4...rig-gemini-grpc-v0.2.5) - 2026-04-28
8+
9+
### Other
10+
11+
- Add clippy no panic lints ([#1663](https://github.com/0xPlaygrounds/rig/pull/1663)) (by @gold-silver-copper) - #1663
12+
13+
### Contributors
14+
15+
* @gold-silver-copper
716

817
## [0.2.4](https://github.com/0xPlaygrounds/rig/compare/rig-gemini-grpc-v0.2.3...rig-gemini-grpc-v0.2.4) - 2026-04-12
918

rig-integrations/rig-gemini-grpc/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-gemini-grpc"
3-
version = "0.2.4"
3+
version = "0.2.5"
44
edition.workspace = true
55
license = "MIT"
66
readme = "README.md"
@@ -11,7 +11,7 @@ repository = "https://github.com/0xPlaygrounds/rig"
1111
workspace = true
1212

1313
[dependencies]
14-
rig-core = { path = "../../rig/rig-core", version = "0.35.0", default-features = false }
14+
rig-core = { path = "../../rig/rig-core", version = "0.36.0", default-features = false }
1515
async-stream = { workspace = true }
1616
base64 = { workspace = true }
1717
futures = { workspace = true }

rig-integrations/rig-helixdb/CHANGELOG.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,21 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

88
## [Unreleased]
9+
## [0.2.5](https://github.com/0xPlaygrounds/rig/compare/rig-helixdb-v0.2.4...rig-helixdb-v0.2.5) - 2026-04-28
10+
11+
### Added
12+
13+
- rustls by default for everything ([#1682](https://github.com/0xPlaygrounds/rig/pull/1682)) (by @gold-silver-copper) - #1682
14+
15+
### Other
16+
17+
- Add clippy no panic lints ([#1663](https://github.com/0xPlaygrounds/rig/pull/1663)) (by @gold-silver-copper) - #1663
18+
- standardize required fields handling across builders ([#1611](https://github.com/0xPlaygrounds/rig/pull/1611)) (by @isSerge) - #1611
19+
20+
### Contributors
21+
22+
* @gold-silver-copper
23+
* @isSerge
924
## [0.2.4](https://github.com/0xPlaygrounds/rig/compare/rig-helixdb-v0.2.3...rig-helixdb-v0.2.4) - 2026-04-12
1025

1126
### Other

rig-integrations/rig-helixdb/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-helixdb"
3-
version = "0.2.4"
3+
version = "0.2.5"
44
edition.workspace = true
55
license = "MIT"
66
readme = "README.md"
@@ -15,7 +15,7 @@ reqwest = { workspace = true, features = ["json"] }
1515
serde = { workspace = true, features = ["derive"] }
1616
serde_json.workspace = true
1717
thiserror = { workspace = true }
18-
rig-core = { path = "../../rig/rig-core", version = "0.35.0", default-features = false }
18+
rig-core = { path = "../../rig/rig-core", version = "0.36.0", default-features = false }
1919

2020
[dev-dependencies]
2121
anyhow = { workspace = true }

rig-integrations/rig-lancedb/CHANGELOG.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,21 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

88
## [Unreleased]
9+
## [0.4.5](https://github.com/0xPlaygrounds/rig/compare/rig-lancedb-v0.4.4...rig-lancedb-v0.4.5) - 2026-04-28
10+
11+
### Added
12+
13+
- rustls by default for everything ([#1682](https://github.com/0xPlaygrounds/rig/pull/1682)) (by @gold-silver-copper) - #1682
14+
15+
### Other
16+
17+
- Add clippy no panic lints ([#1663](https://github.com/0xPlaygrounds/rig/pull/1663)) (by @gold-silver-copper) - #1663
18+
- standardize required fields handling across builders ([#1611](https://github.com/0xPlaygrounds/rig/pull/1611)) (by @isSerge) - #1611
19+
20+
### Contributors
21+
22+
* @gold-silver-copper
23+
* @isSerge
924
## [0.4.4](https://github.com/0xPlaygrounds/rig/compare/rig-lancedb-v0.4.3...rig-lancedb-v0.4.4) - 2026-04-12
1025

1126
### Other

0 commit comments

Comments
 (0)