I am using project* to manage a (non drupal-related) application. My API release compatibility vocabulary includes a single term, 1.x and what I want to do is this:

  • Have a 1.0 "stable" release that is shown as recommended (green).
  • Have a 1.x-dev "snapshot" release that is shown as unsupported (red). This will eventually morph into 1.1 "stable" and replace 1.0 from above.

The problem is that I cannot find a way to make both 1.0 and 1.x-dev appear on the project release table at the same time. As far as I can tell, there is no way to mark the 1.x-dev release node as an unsupported "snapshot" and, without this, it will always replaces the 1.0 release. I could bump the version number to 2.x-dev, which would allow it to appear on the table - but it would still be shown as "supported" (orange) rather than "unsupported" (red).

I have read the documentation twice, searched all support requests and tried everything I could think of, to no avail. I know this is possible (as I've seen drupal.org projects like gallery do this), so I think I must be missing something simple.

To rephrase the question: how can I display two releases, one supported and one unsupported, both targeting the same API version? (Note that I am not using the built-in CVS functionality of project*).

Please help!