Skip to content

Commit

Permalink
chore: release
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] authored Dec 3, 2024
1 parent 5378796 commit 5bb9a64
Show file tree
Hide file tree
Showing 12 changed files with 92 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.

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

## [Unreleased]

## [0.5.0](https://github.com/0xPlaygrounds/rig/compare/rig-core-v0.4.1...rig-core-v0.5.0) - 2024-12-03

### Added

- Improve `InMemoryVectorStore` API ([#130](https://github.com/0xPlaygrounds/rig/pull/130))
- embeddings API overhaul ([#120](https://github.com/0xPlaygrounds/rig/pull/120))
- *(provider)* xAI (grok) integration ([#106](https://github.com/0xPlaygrounds/rig/pull/106))

### Fixed

- *(rig-lancedb)* rag embedding filtering ([#104](https://github.com/0xPlaygrounds/rig/pull/104))

## [0.4.1](https://github.com/0xPlaygrounds/rig/compare/rig-core-v0.4.0...rig-core-v0.4.1) - 2024-11-13

### Other
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.4.1"
version = "0.5.0"
edition = "2021"
license = "MIT"
readme = "README.md"
Expand Down
10 changes: 10 additions & 0 deletions rig-lancedb/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-lancedb-v0.1.2...rig-lancedb-v0.2.0) - 2024-12-03

### Added

- embeddings API overhaul ([#120](https://github.com/0xPlaygrounds/rig/pull/120))

### Fixed

- *(rig-lancedb)* rag embedding filtering ([#104](https://github.com/0xPlaygrounds/rig/pull/104))

## [0.1.2](https://github.com/0xPlaygrounds/rig/compare/rig-lancedb-v0.1.1...rig-lancedb-v0.1.2) - 2024-11-13

### 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.1.2"
version = "0.2.0"
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.4.1" }
rig-core = { path = "../rig-core", version = "0.5.0" }
arrow-array = "52.2.0"
serde_json = "1.0.128"
serde = "1.0.210"
Expand Down
14 changes: 14 additions & 0 deletions rig-mongodb/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,20 @@ 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-mongodb-v0.1.5...rig-mongodb-v0.2.0) - 2024-12-03

### Added

- embeddings API overhaul ([#120](https://github.com/0xPlaygrounds/rig/pull/120))

### Fixed

- *(rig-mongodb)* remove embeddings from `top_n` lookup ([#115](https://github.com/0xPlaygrounds/rig/pull/115))

### Other

- *(integration test)* MongoDB ([#126](https://github.com/0xPlaygrounds/rig/pull/126))

## [0.1.5](https://github.com/0xPlaygrounds/rig/compare/rig-mongodb-v0.1.4...rig-mongodb-v0.1.5) - 2024-11-13

### Other
Expand Down
6 changes: 3 additions & 3 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.1.5"
version = "0.2.0"
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.4.1" }
rig-core = { path = "../rig-core", version = "0.5.0" }
serde = { version = "1.0.203", features = ["derive"] }
serde_json = "1.0.117"
tracing = "0.1.40"
Expand All @@ -28,4 +28,4 @@ required-features = ["rig-core/derive"]

[[test]]
name = "integration_tests"
required-features = ["rig-core/derive"]
required-features = ["rig-core/derive"]
14 changes: 14 additions & 0 deletions rig-neo4j/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,20 @@ 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-neo4j-v0.1.2...rig-neo4j-v0.2.0) - 2024-12-03

### Added

- embeddings API overhaul ([#120](https://github.com/0xPlaygrounds/rig/pull/120))

### Fixed

- *(neo4j)* remove embeddings from top_n lookup ([#118](https://github.com/0xPlaygrounds/rig/pull/118))

### Other

- *(integration test)* Neo4J ([#133](https://github.com/0xPlaygrounds/rig/pull/133))

## [0.1.2](https://github.com/0xPlaygrounds/rig/compare/rig-neo4j-v0.1.1...rig-neo4j-v0.1.2) - 2024-11-13

### 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.1.2"
version = "0.2.0"
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.4.1" }
rig-core = { path = "../rig-core", version = "0.5.0" }
serde = { version = "1.0.203", features = ["derive"] }
serde_json = "1.0.117"
tracing = "0.1.40"
Expand Down
11 changes: 11 additions & 0 deletions rig-qdrant/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.1.3](https://github.com/0xPlaygrounds/rig/compare/rig-qdrant-v0.1.2...rig-qdrant-v0.1.3) - 2024-12-03

### Added

- embeddings API overhaul ([#120](https://github.com/0xPlaygrounds/rig/pull/120))

### Other

- *(integration test)* Neo4J ([#133](https://github.com/0xPlaygrounds/rig/pull/133))
- *(integration test)* Qdrant ([#134](https://github.com/0xPlaygrounds/rig/pull/134))

## [0.1.2](https://github.com/0xPlaygrounds/rig/compare/rig-qdrant-v0.1.1...rig-qdrant-v0.1.2) - 2024-11-13

### Other
Expand Down
6 changes: 3 additions & 3 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.2"
version = "0.1.3"
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.4.1" }
rig-core = { path = "../rig-core", version = "0.5.0" }
serde_json = "1.0.128"
serde = "1.0.210"
qdrant-client = "1.12.1"
Expand All @@ -25,4 +25,4 @@ required-features = ["rig-core/derive"]

[[test]]
name = "integration_tests"
required-features = ["rig-core/derive"]
required-features = ["rig-core/derive"]
14 changes: 14 additions & 0 deletions rig-sqlite/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# 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-sqlite-v0.1.0) - 2024-12-03

### Added

- Add support for Sqlite vector store ([#122](https://github.com/0xPlaygrounds/rig/pull/122))

0 comments on commit 5bb9a64

Please sign in to comment.