Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions Cargo.lock

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

6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,15 @@ members = [
]

[workspace.package]
version = "0.1.0"
version = "0.1.1"
edition = "2024"
rust-version = "1.85.0"
repository = "https://github.com/fg-labs/fg-sra"
license = "MIT"

[workspace.dependencies]
fg-sra-vdb-sys = { version = "0.1.0", path = "crates/fg-sra-vdb-sys", default-features = false }
fg-sra-vdb = { version = "0.1.0", path = "crates/fg-sra-vdb", default-features = false }
fg-sra-vdb-sys = { version = "0.1.1", path = "crates/fg-sra-vdb-sys", default-features = false }
fg-sra-vdb = { version = "0.1.1", path = "crates/fg-sra-vdb", default-features = false }
anyhow = "1"

[workspace.lints.clippy]
Expand Down
8 changes: 8 additions & 0 deletions crates/fg-sra-vdb-sys/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,14 @@

All notable changes to this project will be documented in this file.

## [0.1.1] - 2026-04-09

### Miscellaneous Tasks

- Release v0.1.0

Comment on lines +5 to +10
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue | 🟡 Minor

Fix version text mismatch in the 0.1.1 changelog entry.

Line 9 says Release v0.1.0, but this section is for 0.1.1. This is misleading for release notes consumers.

Suggested fix
- - Release v0.1.0
+ - Release v0.1.1
📝 Committable suggestion

‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.

Suggested change
## [0.1.1] - 2026-04-09
### Miscellaneous Tasks
- Release v0.1.0
## [0.1.1] - 2026-04-09
### Miscellaneous Tasks
- Release v0.1.1
🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed.

In `@crates/fg-sra-vdb-sys/CHANGELOG.md` around lines 5 - 10, Update the changelog
entry under the header "## [0.1.1] - 2026-04-09" to correct the release line
reading "Release v0.1.0" so it matches the section version; change that bullet
to "Release v0.1.1" (or an appropriate description for 0.1.1) to remove the
mismatch.

<!-- generated by git-cliff -->

## [0.1.0] - 2026-04-08

### Bug Fixes
Expand Down
8 changes: 8 additions & 0 deletions crates/fg-sra-vdb/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,14 @@

All notable changes to this project will be documented in this file.

## [0.1.1] - 2026-04-09

### Miscellaneous Tasks

- Release v0.1.0

<!-- generated by git-cliff -->

## [0.1.0] - 2026-04-08

### Bug Fixes
Expand Down
8 changes: 8 additions & 0 deletions crates/fg-sra/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,14 @@

All notable changes to this project will be documented in this file.

## [0.1.1] - 2026-04-09

### Miscellaneous Tasks

- Release v0.1.0

Comment on lines +5 to +10
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue | 🟡 Minor

Update bullet text to the current release version.

Line 9 should reference v0.1.1, not v0.1.0, to keep changelog history accurate.

Suggested fix
- - Release v0.1.0
+ - Release v0.1.1
📝 Committable suggestion

‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.

Suggested change
## [0.1.1] - 2026-04-09
### Miscellaneous Tasks
- Release v0.1.0
## [0.1.1] - 2026-04-09
### Miscellaneous Tasks
- Release v0.1.1
🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed.

In `@crates/fg-sra/CHANGELOG.md` around lines 5 - 10, The changelog entry under
"## [0.1.1] - 2026-04-09" incorrectly lists "- Release v0.1.0"; update that
bullet to "- Release v0.1.1" so the release note matches the section version
heading and keeps changelog history consistent.

<!-- generated by git-cliff -->

## [0.1.0] - 2026-04-08

### Bug Fixes
Expand Down
Loading