-
Notifications
You must be signed in to change notification settings - Fork 0
chore(release): v0.2.0 #15
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,6 +1,6 @@ | ||
| { | ||
| "name": "@mandarnilange/agentforge", | ||
| "version": "0.2.0-rc.2", | ||
| "version": "0.2.0", | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 🧩 Analysis chain🏁 Script executed: #!/bin/bash
# Verify version alignment for release metadata across package manifests.
fd -a package.json | while read -r f; do
jq -r --arg f "$f" '
[
$f,
.name,
.version,
(.dependencies["@mandarnilange/agentforge-core"] // "-"),
(.peerDependencies["@mandarnilange/agentforge-core"] // "-")
] | `@tsv`
' "$f"
doneRepository: mandarnilange/agentforge Length of output: 412 Update The platform package publishes as Proposed fix "dependencies": {
- "@mandarnilange/agentforge-core": "^0.2.0-rc.2",
+ "@mandarnilange/agentforge-core": "^0.2.0",
"dockerode": "^4.0.10", "peerDependencies": {
- "@mandarnilange/agentforge-core": "^0.2.0-rc.2"
+ "@mandarnilange/agentforge-core": "^0.2.0"🤖 Prompt for AI Agents |
||
| "description": "Production infrastructure for AgentForge — multi-provider LLMs, Docker/remote executors, Postgres state, full OTel, multi-node workers", | ||
| "type": "module", | ||
| "bin": { | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Duplicate
0.2.0headings in changelog need consolidation.Line 6 introduces a second
## [0.2.0]while another already exists at Line 149. This can make release-note generation ambiguous and mislead consumers about what belongs to the stable tag. Keep exactly one0.2.0section (or rename the older one to its correct historical version).🤖 Prompt for AI Agents