-
Notifications
You must be signed in to change notification settings - Fork 3k
Add upgrade script for ryu #9733
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
base: master
Are you sure you want to change the base?
Conversation
In erlang#9670 a lot of license headers were fixed to give better information, so a lot of curations can now be removed.
We place it in a separate file in order to move out the license information and to make it easier to pick updates.
It was only used for the ryu to_chars snippet and that is not removed.
CT Test ResultsTests are running... https://github.com/erlang/otp/actions/runs/14469948607 Results for commit 5171ac9 To speed up review, make sure that you have read Contributing to Erlang/OTP and that all checks pass. See the TESTING and DEVELOPMENT HowTo guides for details about how to run test locally. Artifacts
// Erlang/OTP Github Action Bot |
####################################################################### | ||
|
||
https://github.com/microsoft/STL/blob/master/stl/inc/xcharconv_ryu.h has been | ||
updated. Check that no changes effect the __to_chars function and if they do |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
effect
-> affect
?
@@ -14,18 +14,22 @@ | |||
"homepage": "https://github.com/ulfjack/ryu", | |||
"licenseDeclared": "Apache-2.0", | |||
"name": "ryu", | |||
"versionInfo": "844864ac213bdbf1fb57e6f51c653b3d90af0937", | |||
"versionInfo": "1264a946ba66eab320e927bfd2362e0c8580c42f", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
is there any version info? Just to see if we avoid this accidental duplication of sha in versionInfo
and sha
.
I think not, but just checking
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There is a version 2.0, but that is the only version ever released and there don't seem to be any new ones even if there have been many fixes since.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good, but I did not run and test. It has a good explanation for how to update ryu and has split up the to_chars function. Well done.
This PR adds an splits out the
to_chars
function taken from STL into a separate file to make license handling easier and then adds an update script that checks if there are upgrades available and if there it tries to apply them.The PR also updates ryu to the latest version.
This PR depends on the changes in #9732