-
Notifications
You must be signed in to change notification settings - Fork 0
chore(main): release agi-js 0.4.3 #14
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,3 +1,3 @@ | ||
| { | ||
| ".": "0.4.2" | ||
| ".": "0.4.3" | ||
| } | ||
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": "@agi_inc/agi-js", | ||
| "version": "0.5.1", | ||
| "version": "0.4.3", | ||
|
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. Version downgrade from 0.5.1 to 0.4.3 breaks semantic versioning and will cause package registry conflicts. The base branch ( Prompt To Fix With AIThis is a comment left during a code review.
Path: package.json
Line: 3:3
Comment:
Version downgrade from 0.5.1 to 0.4.3 breaks semantic versioning and will cause package registry conflicts. The base branch (`main`) is at version 0.5.1 after commit b5a290f, but this PR attempts to publish 0.4.3. This indicates a conflict between Release Please's version tracking and manual version bumps. The `.release-please-manifest.json` needs to be synchronized with the actual package version before merging.
How can I resolve this? If you propose a fix, please make it concise. |
||
| "description": "Official TypeScript/JavaScript SDK for AGI.tech API", | ||
| "main": "./dist/index.js", | ||
| "module": "./dist/index.mjs", | ||
|
|
||
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.
Manifest version 0.4.3 conflicts with current
package.jsonversion 0.5.1 onmain. Update this to "0.5.1" to sync with the actual published version, then let Release Please calculate the next version based on the new feature in PR #11.Prompt To Fix With AI