-
Notifications
You must be signed in to change notification settings - Fork 37
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
feat: Bump rust-polars to 0.36.2 #659
Conversation
@@ -73,7 +73,7 @@ impl RPolarsDataType { | |||
"Float32" | "float32" | "double" => pl::DataType::Float32, | |||
"Float64" | "float64" => pl::DataType::Float64, | |||
|
|||
"String" | "character" => pl::DataType::String, | |||
"Utf8" | "String" | "character" => pl::DataType::String, |
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.
I was just getting started on this too. I think we can leave Utf8 as an alias, as py-polars does the same thing.
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.
Yes, we should keep an alias but I guess docs should be updated to prefer "String" instead
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.
Go ahead if you want, let me know when I can jump in ;)
I think I passed all the tests. I'm going to bed now, so I won't update any more. It would be helpful if you could update the documentation etc. |
@eitsupi I think it's good to go. There are no breaking changes here, so I think we could release 0.12.1 so that we don't get two rust-polars updates in one release |
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.
Yes, let's create a new release!
https://github.com/pola-rs/polars/releases/tag/rs-0.36.2
We updated most things in the previous bump to unreleased 2023-12-25. The main change here is the renaming of
Utf8
toString