Skip to content

Release 0.7.1

Compare
Choose a tag to compare
@tushushu tushushu released this 30 Jan 04:00
b174d27

Note: The publish action jobs got some issue when publishing v0.7.0. PYPI won't allow you to re-publish your Python wheels with the same name even if you removed the released files, so have to fix this and re-publish as v0.7.1

What's new?

Features:

  • Support windows users;
  • Implement StringList;
  • Implement methods for StringList such as __repr__, __str__, __len__, append, copy, counter, cycle, get, pop, repeat, set, size, to_list and union.
  • Implement astype method for type conversion from or to a StringList;
  • Implement apply, case, where and union_all methods;
  • Implement counter method for NonFloatList.

Doc:

  • Update the examples of Readme.md;
  • Add ulist's introduction and features in Readme.md;

Misc:

  • Rename the scala parameter num as elem because we have StringList now, and the name element makes more sense than a number;
  • Rename union method as union_all;
  • Implement NonFloatList trait for methods abstraction.