| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
Sorry, something went wrong.
|
Aditya Patwardhan (@adityapatwardhan) Can you review as well? |
Sorry, something went wrong.
|
🎉v7.0.0-rc.2 has been released which incorporates this pull request.:tada: Handy links: |
Sorry, something went wrong.
| Back | FazBrowse Home | New Git URL |
PR Summary
Currently, MSIX has two products: PowerShellPreview and PowerShell. The current code looks for preview in the version to determine it is a preview release which misses rc releases. The fix is to check for a - indicating a semver label which means not stable. Second, the product version relies on the semver label to create the revision, so 7.0.0-rc.2 becomes 7.0.2, but this conflicts with 7.0.0-preview.2 which is also 7.0.2 and would also be older than 7.0.0-preview.6 which is 7.0.6. Fix is to increase the revision to the 100 range so, 7.0.0-rc.2 becomes 7.0.102. Since non-preview releases are a separate product, the versioning won't conflict with a serviced 7.0 release.
PR Checklist