Skip to content
Merged
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
2 changes: 1 addition & 1 deletion Cargo.lock

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

2 changes: 1 addition & 1 deletion rs/moq-ffi/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ authors = ["Luke Curley <kixelated@gmail.com>", "Brian Medley <bpm@bmedley.org>"
repository = "https://github.com/moq-dev/moq"
license = "MIT OR Apache-2.0"

version = "0.1.4"
version = "0.1.5"
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

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

⚠️ Potential issue | 🟡 Minor

🧩 Analysis chain

🏁 Script executed:

#!/bin/bash
# Description: Check for stale references to version 0.1.4 and verify CHANGELOG exists

# Check for any remaining references to the old version
echo "=== Checking for stale version references ==="
rg -n "0\.1\.4" --type toml --type md --type txt

# Check if CHANGELOG exists and mentions the new version
echo -e "\n=== Checking for CHANGELOG ==="
fd -t f "CHANGELOG|CHANGES|HISTORY" --exec echo "Found: {}"

# Check if other workspace members depend on moq-ffi
echo -e "\n=== Checking workspace dependencies on moq-ffi ==="
rg -n "moq-ffi.*version" --type toml

Repository: moq-dev/moq

Length of output: 1386


Update CHANGELOG.md with version 0.1.5 entry.

The version bump in Cargo.toml is correctly formatted, but rs/moq-ffi/CHANGELOG.md has not been updated. The latest entry still shows version 0.1.4 (dated 2026-03-18). Add a new section for version 0.1.5 with the release notes for this patch version.

🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed.

In `@rs/moq-ffi/Cargo.toml` at line 8, Update rs/moq-ffi/CHANGELOG.md to add a new
top section for version 0.1.5 matching the Cargo.toml bump: create a heading for
"0.1.5" with the release date (today's release date) and include the patch
release notes summarizing the changes in this release (e.g., bug fixes, minor
improvements or fixes referenced by this PR). Ensure the new entry appears above
the existing 0.1.4 entry and follows the same formatting style used in the file.

edition = "2024"

keywords = ["quic", "http3", "webtransport", "media", "live"]
Expand Down
Loading