Skip to content

0.13

Choose a tag to compare

@klieber klieber released this 24 Mar 03:13
· 384 commits to master since this release

The tag format has changed from:

  <tagDescriptions>
    <pets>Everything about your Pets</pets>
    <store>Access to Petstore orders</store>
  </tagDescriptions>

to:

  <tags>
    <tag>
      <name>pets</name>
      <description>Everything about your Pets</description>
    </tag>
    <tag>
      <name>store</name>
      <description>Access to Petstore orders</description>
    </tag>
  </tags>

This is more verbose but it is consistent with how scopes are defined and allows for tag names that have whitespace in the name.

See #24 and #28.