-
Notifications
You must be signed in to change notification settings - Fork 0
Closed
Labels
bugSomething isn't workingSomething isn't workingdocumentationImprovements or additions to documentationImprovements or additions to documentation
Description
Problem
The package.json currently shows version 0.2.0, but the library is already at version 2.0.0 according to:
- Git tags (v2.0.0)
- CHANGELOG.md
- Release notes
- CLAUDE.md
Current State
{
"name": "@techdivision/appsheet",
"version": "0.2.0", // ❌ Should be 2.0.0
...
}Expected State
{
"name": "@techdivision/appsheet",
"version": "2.0.0",
...
}Impact
- Version mismatch between package.json and actual releases
- Confusing for users installing via npm
- Semantic versioning inconsistency
Solution
Update package.json version to 2.0.0 to match the actual release version.
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't workingdocumentationImprovements or additions to documentationImprovements or additions to documentation