Skip to content

Commit

Permalink
chore: release (#257)
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 Feb 10, 2025
1 parent d8876fb commit 57e536e
Show file tree
Hide file tree
Showing 19 changed files with 119 additions and 25 deletions.
16 changes: 8 additions & 8 deletions Cargo.lock

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

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

## [Unreleased]

## [0.8.0](https://github.com/0xPlaygrounds/rig/compare/rig-core-v0.7.0...rig-core-v0.8.0) - 2025-02-10

### Added

- fastembed integration (#268)
- *(core)* overhaul message API (#199)
- Add support for Azure OpenAI (#234)
- support moonshot language model (#223)
- galadriel api integration (redux) (#265)
- add Galadriel API integration (#188)
- support extractor for deepseek (#255)
- support tools for DeepSeek provider (#251)
- streaming API implementation for Anthropic provider (#232)

### Fixed

- deepseek client auth (#279)
- *(galadriel)* missed fixes from messages pr (#270)

### Other

- fix spelling errors in `Makefile` and `message.rs` (#284)
- Correct `tracing::debug` message. ([#275](https://github.com/0xPlaygrounds/rig/pull/275))
- agent recipes (#215)
- Revert "feat: add Galadriel API integration ([#188](https://github.com/0xPlaygrounds/rig/pull/188))" ([#264](https://github.com/0xPlaygrounds/rig/pull/264))
- *(example)* fix grammar mistake (#260)
- Fix typos "substract" → "subtract" ([#256](https://github.com/0xPlaygrounds/rig/pull/256))
- fix typos (#242)
- add more provider notes (#237)

## [0.7.0](https://github.com/0xPlaygrounds/rig/compare/rig-core-v0.6.1...rig-core-v0.7.0) - 2025-01-27

### Added
Expand Down
4 changes: 2 additions & 2 deletions rig-core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rig-core"
version = "0.7.0"
version = "0.8.0"
edition = "2021"
license = "MIT"
readme = "README.md"
Expand Down Expand Up @@ -73,4 +73,4 @@ required-features = ["derive"]

[[example]]
name = "agent_with_moonshot"
required-features = ["derive"]
required-features = ["derive"]
10 changes: 10 additions & 0 deletions rig-eternalai/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.2.0](https://github.com/0xPlaygrounds/rig/compare/rig-eternalai-v0.1.0...rig-eternalai-v0.2.0) - 2025-02-10

### Added

- *(core)* overhaul message API (#199)

### Other

- fix typos (#242)

## [0.1.0](https://github.com/0xPlaygrounds/rig/releases/tag/rig-eternalai-v0.1.0) - 2025-01-27

### Added
Expand Down
4 changes: 2 additions & 2 deletions rig-eternalai/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
[package]
name = "rig-eternalai"
version = "0.1.0"
version = "0.2.0"
edition = "2021"
license = "MIT"
readme = "README.md"
description = "EternalAI model provider Rig integration."
repository = "https://github.com/0xPlaygrounds/rig"

[dependencies]
rig-core = { path = "../rig-core", version = "0.7.0" }
rig-core = { path = "../rig-core", version = "0.8.0" }
ethers = "2.0.14"
reqwest = { version = "0.11.22", features = ["json"] }
serde = { version = "1.0.193", features = ["derive"] }
Expand Down
18 changes: 18 additions & 0 deletions rig-fastembed/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Changelog

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).

## [Unreleased]

## [0.1.0](https://github.com/0xPlaygrounds/rig/releases/tag/rig-fastembed-v0.1.0) - 2025-02-10

### Added

- fastembed integration (#268)

### Fixed

- *(rig-fastembed)* crate info (#294)
2 changes: 1 addition & 1 deletion rig-fastembed/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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.7.0" }
rig-core = { path = "../rig-core", version = "0.8.0" }
serde = { version = "1.0.193", features = ["derive"] }
serde_json = "1.0.108"
tracing = "0.1.40"
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.4](https://github.com/0xPlaygrounds/rig/compare/rig-lancedb-v0.2.3...rig-lancedb-v0.2.4) - 2025-02-10

### Other

- updated the following local packages: rig-core

## [0.2.3](https://github.com/0xPlaygrounds/rig/compare/rig-lancedb-v0.2.2...rig-lancedb-v0.2.3) - 2025-01-27

### 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.3"
version = "0.2.4"
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.7.0" }
rig-core = { path = "../rig-core", version = "0.8.0" }
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.4](https://github.com/0xPlaygrounds/rig/compare/rig-mongodb-v0.2.3...rig-mongodb-v0.2.4) - 2025-02-10

### Fixed

- mongodb vector search example

## [0.2.3](https://github.com/0xPlaygrounds/rig/compare/rig-mongodb-v0.2.2...rig-mongodb-v0.2.3) - 2025-01-27

### Other
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.3"
version = "0.2.4"
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.7.0" }
rig-core = { path = "../rig-core", version = "0.8.0" }
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-neo4j/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.4](https://github.com/0xPlaygrounds/rig/compare/rig-neo4j-v0.2.3...rig-neo4j-v0.2.4) - 2025-02-10

### Other

- updated the following local packages: rig-core

## [0.2.3](https://github.com/0xPlaygrounds/rig/compare/rig-neo4j-v0.2.2...rig-neo4j-v0.2.3) - 2025-01-27

### 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.3"
version = "0.2.4"
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.7.0" }
rig-core = { path = "../rig-core", version = "0.8.0" }
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-postgres/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-postgres-v0.1.1...rig-postgres-v0.1.2) - 2025-02-10

### Other

- fix spelling errors in `Makefile` and `message.rs` (#284)

## [0.1.1](https://github.com/0xPlaygrounds/rig/compare/rig-postgres-v0.1.0...rig-postgres-v0.1.1) - 2025-01-27

### Other
Expand Down
4 changes: 2 additions & 2 deletions rig-postgres/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
[package]
name = "rig-postgres"
version = "0.1.1"
version = "0.1.2"
edition = "2021"
description = "PostgreSQL-based vector store implementation for the rig framework"
license = "MIT"
readme = "README.md"
repository = "https://github.com/0xPlaygrounds/rig"

[dependencies]
rig-core = { path = "../rig-core", version = "0.7.0", features = ["derive"] }
rig-core = { path = "../rig-core", version = "0.8.0", features = ["derive"] }
serde = { version = "1.0.215", features = ["derive"] }
serde_json = "1.0.133"

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.7](https://github.com/0xPlaygrounds/rig/compare/rig-qdrant-v0.1.6...rig-qdrant-v0.1.7) - 2025-02-10

### Other

- updated the following local packages: rig-core

## [0.1.6](https://github.com/0xPlaygrounds/rig/compare/rig-qdrant-v0.1.5...rig-qdrant-v0.1.6) - 2025-01-27

### 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.6"
version = "0.1.7"
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.7.0" }
rig-core = { path = "../rig-core", version = "0.8.0" }
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.4](https://github.com/0xPlaygrounds/rig/compare/rig-sqlite-v0.1.3...rig-sqlite-v0.1.4) - 2025-02-10

### Other

- updated the following local packages: rig-core

## [0.1.3](https://github.com/0xPlaygrounds/rig/compare/rig-sqlite-v0.1.2...rig-sqlite-v0.1.3) - 2025-01-27

### Fixed
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.3"
version = "0.1.4"
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.7.0", features = ["derive"] }
rig-core = { path = "../rig-core", version = "0.8.0", features = ["derive"] }
rusqlite = { version = "0.32", features = ["bundled"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
Expand Down

0 comments on commit 57e536e

Please sign in to comment.