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
4 changes: 2 additions & 2 deletions package-lock.json

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

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@mozilla-ai/mcpd",
"version": "0.0.4",
"version": "0.1.0",
Copy link

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
# Check for release documentation and version history

echo "=== Looking for CHANGELOG/release files ==="
fd -i 'changelog|history|releases' -e md -e txt 2>/dev/null | head -20

echo -e "\n=== Checking docs directory ==="
fd -t f . docs/ -e md 2>/dev/null | head -20

echo -e "\n=== Searching for v0.1.0 or 0.1.0 mentions ==="
rg -i '0\.1\.0|v0\.1\.0' -g "*.md" -g "*.txt" 2>/dev/null | head -30

echo -e "\n=== Checking git history for recent commits ==="
git log --oneline -20 2>/dev/null || echo "Git history not available"

echo -e "\n=== Listing root directory files ==="
ls -la | grep -E '\.(md|txt)$'

Repository: mozilla-ai/mcpd-sdk-javascript

Length of output: 581


Add release documentation for v0.1.0.

No CHANGELOG or release notes exist in the repository to document what is included in v0.1.0. Before or alongside this version bump, create a CHANGELOG.md (or similar) detailing the changes, new features, and any breaking changes since v0.0.4. This ensures users understand what is included in this release and any migration steps needed when upgrading.

🤖 Prompt for AI Agents
In @package.json at line 3, Create a CHANGELOG.md documenting the v0.1.0 release
referenced by the "version": "0.1.0" bump in package.json; include a clear
header for v0.1.0, list new features, bug fixes, and any breaking changes or
migration steps since v0.0.4, add dates and contributor/PR references where
applicable, and commit the changelog alongside the package.json version bump so
users can see what changed and how to upgrade.

"description": "JavaScript/TypeScript SDK for interacting with mcpd",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
Expand Down