Bugfix release and minor API change:
* implemented STAMQL serialisation of collection constraints that were not serialisable before
* DataOperator::Equals now takes Cow<'a, str> instead of &'a str, so it can be owned or borrowed: If in your code you use `DataOperator::Equals("blah")` you will now have to change it to `DataOperator::Equals("blah".into())`