Documentation#4
Conversation
Documentation cleanup
There was a problem hiding this comment.
Pull Request Overview
This PR rolls back the version from 1.0.14 to 1.0.1 and removes the CHANGELOG.md file entirely. The version rollback is reflected across three files (package.json, manifest.json, and versions.json), while the versions.json file has also been simplified to contain only a single version mapping.
Key Changes:
- Version downgrade from 1.0.14 to 1.0.1 across all version-related files
- Complete removal of CHANGELOG.md documentation
- Simplified versions.json to contain only one version mapping (1.0.1)
Reviewed Changes
Copilot reviewed 4 out of 5 changed files in this pull request and generated 2 comments.
| File | Description |
|---|---|
| versions.json | Removed all version mappings except 1.0.1, eliminating version history |
| package.json | Downgraded package version from 1.0.0 to 1.0.1 |
| manifest.json | Downgraded manifest version from 1.0.14 to 1.0.1 |
| CHANGELOG.md | Deleted entire changelog documentation file |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
| "id": "dex-contacts", | ||
| "name": "Dex Contacts", | ||
| "version": "1.0.14", | ||
| "version": "1.0.1", |
There was a problem hiding this comment.
Version downgrade from 1.0.14 to 1.0.1 may cause confusion for existing users and could break auto-update mechanisms. Consider using a forward version number (e.g., 2.0.0) if this represents a significant reset or restructuring.
| "version": "1.0.1", | |
| "version": "1.0.15", |
| @@ -1,17 +1,3 @@ | |||
| { | |||
There was a problem hiding this comment.
Removing all historical version mappings eliminates the ability to support users on previous versions. This could break compatibility for users who haven't updated yet. Consider maintaining at least the most recent stable version mappings.
| { | |
| { | |
| "1.0.0": "1.0.0", |
No description provided.