-
Notifications
You must be signed in to change notification settings - Fork 0
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
Fix sorting to work properly with multi-digit version numbers #9
Comments
I looked a bit into this. It's a bit nontrivial since we will need to retain both the potentially v1.4.x and 1.4.y strings (one being a string, the other being a |
This is an annoying bug; it's laughable really. We should fix it. Workaround for the time being: $ changelog-rs . 2014.0.12 2014.0.13 |
I am being bothered by this again. If someone wants to fix it, I'll be very happy to help you with some details on how it can be sorted out. |
Right now, it sorts like this:
...which is obviously wrong. 1.23.0 is ascii-wise lower than 1.3.0, but not numerically wise.
The text was updated successfully, but these errors were encountered: