Skip to content

Commit

Permalink
fix: Fix profile-sync-controller version (#4273)
Browse files Browse the repository at this point in the history
## Explanation

The version of the `@metamask/profile-sync-controller` package has been
updated to `0.0.0`, which is what our publishing automation expects of
all unpublished public packages.

The current version is `0.1.0`, which caused problems for our most
recent release, requiring a rollback. It broke publishing because our
publishing scripts tried to find version `0.1.0` in the package
changelog but were unable to.

This should have been caught by our linter, but it wasn't due to a
deficiency in the `@metamask/auto-changelog` validation command (it
doesn't validate that the current release exists). This problem has been
documented here: MetaMask/auto-changelog#192

## References

Unblocks #4272

## Changelog

N/A

## Checklist

- [x] I've updated the test suite for new or updated code as appropriate
- [x] I've updated documentation (JSDoc, Markdown, etc.) for new or
updated code as appropriate
- [x] I've highlighted breaking changes using the "BREAKING" category
above as appropriate
  • Loading branch information
Gudahtt committed May 9, 2024
1 parent f599377 commit c36d76f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/profile-sync-controller/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@metamask/profile-sync-controller",
"version": "0.1.0",
"version": "0.0.0",
"description": "The profile sync helps developers synchronize data across multiple clients and devices in a privacy-preserving way. All data saved in the user storage database is encrypted client-side to preserve privacy. The user storage provides a modular design, giving developers the flexibility to construct and manage their storage spaces in a way that best suits their needs",
"keywords": [
"MetaMask",
Expand Down

0 comments on commit c36d76f

Please sign in to comment.