Skip to content

Commit

Permalink
chore: release (#180)
Browse files Browse the repository at this point in the history
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
  • Loading branch information
github-actions[bot] authored Jan 13, 2025
1 parent a7e6e8c commit 38b8d35
Show file tree
Hide file tree
Showing 13 changed files with 70 additions and 17 deletions.
12 changes: 6 additions & 6 deletions Cargo.lock

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

20 changes: 20 additions & 0 deletions rig-core/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,26 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.6.1](https://github.com/0xPlaygrounds/rig/compare/rig-core-v0.6.0...rig-core-v0.6.1) - 2025-01-13

### Added

- Add `from_url` method to Gemini client (#194)
- Feature flag for CF worker compatibility (#176) (#175)
- *(eternal-ai)* Eternal-AI provider for rig (#171)
- Add gpt-4o-mini to openai model list (#187)

### Fixed

- *(example)* ollama example uses wrong url

### Other

- Add additional check for empty tool_calls ([#166](https://github.com/0xPlaygrounds/rig/pull/166))
- Mock provider API in vector store integration tests (#186)
- fix comment (#182)
- fix various typos

## [0.6.0](https://github.com/0xPlaygrounds/rig/compare/rig-core-v0.5.0...rig-core-v0.6.0) - 2024-12-19

### Added
Expand Down
2 changes: 1 addition & 1 deletion rig-core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rig-core"
version = "0.6.0"
version = "0.6.1"
edition = "2021"
license = "MIT"
readme = "README.md"
Expand Down
6 changes: 6 additions & 0 deletions rig-lancedb/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.2.2](https://github.com/0xPlaygrounds/rig/compare/rig-lancedb-v0.2.1...rig-lancedb-v0.2.2) - 2025-01-13

### Other

- Mock provider API in vector store integration tests (#186)

## [0.2.1](https://github.com/0xPlaygrounds/rig/compare/rig-lancedb-v0.2.0...rig-lancedb-v0.2.1) - 2024-12-19

### Other
Expand Down
4 changes: 2 additions & 2 deletions rig-lancedb/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rig-lancedb"
version = "0.2.1"
version = "0.2.2"
edition = "2021"
license = "MIT"
readme = "README.md"
Expand All @@ -9,7 +9,7 @@ repository = "https://github.com/0xPlaygrounds/rig"

[dependencies]
lancedb = "0.10.0"
rig-core = { path = "../rig-core", version = "0.6.0" }
rig-core = { path = "../rig-core", version = "0.6.1" }
arrow-array = "52.2.0"
serde_json = "1.0.128"
serde = "1.0.210"
Expand Down
6 changes: 6 additions & 0 deletions rig-mongodb/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.2.2](https://github.com/0xPlaygrounds/rig/compare/rig-mongodb-v0.2.1...rig-mongodb-v0.2.2) - 2025-01-13

### Other

- Mock provider API in vector store integration tests (#186)

## [0.2.1](https://github.com/0xPlaygrounds/rig/compare/rig-mongodb-v0.2.0...rig-mongodb-v0.2.1) - 2024-12-19

### Added
Expand Down
4 changes: 2 additions & 2 deletions rig-mongodb/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rig-mongodb"
version = "0.2.1"
version = "0.2.2"
edition = "2021"
license = "MIT"
readme = "README.md"
Expand All @@ -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.6.0" }
rig-core = { path = "../rig-core", version = "0.6.1" }
serde = { version = "1.0.203", features = ["derive"] }
serde_json = "1.0.117"
tracing = "0.1.40"
Expand Down
9 changes: 9 additions & 0 deletions rig-neo4j/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.2.2](https://github.com/0xPlaygrounds/rig/compare/rig-neo4j-v0.2.1...rig-neo4j-v0.2.2) - 2025-01-13

### Other

- *(rig-neo4j)* remove old tests (#197)
- *(rig-neo4j)* Fix neo4j integration test (#190)
- Mock provider API in vector store integration tests (#186)
- fix typo

## [0.2.1](https://github.com/0xPlaygrounds/rig/compare/rig-neo4j-v0.2.0...rig-neo4j-v0.2.1) - 2024-12-19

### Other
Expand Down
4 changes: 2 additions & 2 deletions rig-neo4j/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rig-neo4j"
version = "0.2.1"
version = "0.2.2"
edition = "2021"
license = "MIT"
readme = "README.md"
Expand All @@ -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.6.0" }
rig-core = { path = "../rig-core", version = "0.6.1" }
serde = { version = "1.0.203", features = ["derive"] }
serde_json = "1.0.117"
tracing = "0.1.40"
Expand Down
6 changes: 6 additions & 0 deletions rig-qdrant/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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-qdrant-v0.1.4...rig-qdrant-v0.1.5) - 2025-01-13

### Other

- Mock provider API in vector store integration tests (#186)

## [0.1.4](https://github.com/0xPlaygrounds/rig/compare/rig-qdrant-v0.1.3...rig-qdrant-v0.1.4) - 2024-12-19

### Other
Expand Down
4 changes: 2 additions & 2 deletions rig-qdrant/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
[package]
name = "rig-qdrant"
version = "0.1.4"
version = "0.1.5"
edition = "2021"
license = "MIT"
readme = "README.md"
description = "Rig vector store index integration for Qdrant. https://qdrant.tech"
repository = "https://github.com/0xPlaygrounds/rig"

[dependencies]
rig-core = { path = "../rig-core", version = "0.6.0" }
rig-core = { path = "../rig-core", version = "0.6.1" }
serde_json = "1.0.128"
serde = "1.0.210"
qdrant-client = "1.12.1"
Expand Down
6 changes: 6 additions & 0 deletions rig-sqlite/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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-sqlite-v0.1.1...rig-sqlite-v0.1.2) - 2025-01-13

### Other

- updated the following local packages: rig-core

## [0.1.1](https://github.com/0xPlaygrounds/rig/compare/rig-sqlite-v0.1.0...rig-sqlite-v0.1.1) - 2024-12-19

### Other
Expand Down
4 changes: 2 additions & 2 deletions rig-sqlite/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rig-sqlite"
version = "0.1.1"
version = "0.1.2"
edition = "2021"
description = "SQLite-based vector store implementation for the rig framework"
license = "MIT"
Expand All @@ -9,7 +9,7 @@ license = "MIT"
doctest = false

[dependencies]
rig-core = { path = "../rig-core", version = "0.6.0", features = ["derive"] }
rig-core = { path = "../rig-core", version = "0.6.1", features = ["derive"] }
rusqlite = { version = "0.32", features = ["bundled"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
Expand Down

0 comments on commit 38b8d35

Please sign in to comment.