This release fixes 152, which adds new syntax for the `partof` field. The original syntax will continue to work. It also marks the release where we have removed our dependency on `rustc_serialize` and now depend only on `serde`.
partof improvements
The `partof` field now accepts a list of strings. This is the default format, except for when there is a single item.
The default looks like this:
[REQ-single]
partof = "REQ-other"
[REQ-multi]
partof = [
"REQ-other",
"REQ-another",
]
These are all the same (and `art fmt` will convert them to the first one.)
partof = [
"SPC-one",
"SPC-two",
"SPC-three",
]
partof = "SPC-[one, two, three]"
partof = [
"SPC-one",
"SPC-[two, three]",
]