-
Notifications
You must be signed in to change notification settings - Fork 179
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
Request to Reinstate Semantic Versioning for Clarity and Compatibility #178
Comments
|
+1 In addition, I request to reinstate semantic version to facilitate referencing from other libraries. I am referencing this library from a package I am creating, but I cannot use |
|
I think(?) this same problem is hitting my Ignite project: SPM is complaining that adding Ignite fails because it relies on an unstable package: swift-markdown. I might switch to the solution suggested by @fumito-ito, but actual semver would be most welcome. |
|
Follow-up: Unfortunately the #178 (comment) solution did not work. This is because Since I had no choice, I forked https://github.com/fumito-ito/swift-markdown/releases/tag/510.0.0 |
|
Maybe we can expect a 0.4.0 release for release/5.10. cc @QuietMisdreavus |
|
Ah, yes, i didn't update this thread. I brought this up with the Swift Documentation Workgroup, and we decided to continue tagging releases based on Swift releases, backporting important bug fixes as necessary. I started off by tagging the |
Semantic Versioning, often abbreviated as SemVer, is a versioning scheme for software aimed at conveying meaning about the underlying changes with each release. It's structured as
MAJOR.MINOR.PATCH, where:This system helps developers and users understand the impact of updating to a new version without having to delve deep into the release notes. For instance, increasing the MAJOR version signals that users might need to make significant changes on their end, while a PATCH update suggests minor, typically safe improvements.
https://semver.org
The text was updated successfully, but these errors were encountered: