-
-
Notifications
You must be signed in to change notification settings - Fork 233
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
add support for semver crate #195
add support for semver crate #195
Conversation
cc @GREsau |
Added a Regex pattern for the resulting string type, which is a permissive version of the official spec at: https://semver.org/ |
@GREsau I wonder if you have time to take a look. |
It seems like the project is still active, with new updates this week. Would love to see this shipped! @GREsau Thanks for all the hard work maintaining this incredibly useful crate! |
Can this use the official validation regex? Doesn't seem like there's a particular reason not to. |
@sunshowers you are absolutely correct. updated! |
This is largely the same as #182 |
@jayvdb How so? |
oh sorry wrong one - I meant #74 |
Merged in #238, better late than never right? 😅 Thanks for the PR |
Thank you! |
Thanks for the awesome package!
This PR adds support for the
semver
crate, which is a Rust-wide standard now for reading/writing/comparing/validating versions. It also has its ownserde
feature for serializing/deserializingVersion
types into JSON strings.Any comments/feedback is really appreciated. Would love to merge this and integrate it into our own projects!