Release 0.7.1
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
andunion
. - Implement
astype
method for type conversion from or to aStringList
; - Implement
apply
,case
,where
andunion_all
methods; - Implement
counter
method forNonFloatList
.
Doc:
- Update the examples of
Readme.md
; - Add ulist's introduction and features in
Readme.md
;
Misc:
- Rename the scala parameter
num
aselem
because we haveStringList
now, and the nameelement
makes more sense than anumber
; - Rename
union
method asunion_all
; - Implement
NonFloatList
trait for methods abstraction.