Reformat api_versions list, one per line, and note about order

Order is important since we have now a test case to prevent a lower version to be added.
This commit is contained in:
Laurent Monin
2014-04-23 15:16:29 +02:00
parent d7ba54dc51
commit 9f63a24cf8

View File

@@ -82,4 +82,13 @@ else:
__version__ = PICARD_VERSION_STR
PICARD_FANCY_VERSION_STR = PICARD_VERSION_STR_SHORT
api_versions = ["0.15.0", "0.15.1", "0.16.0", "1.0.0", "1.1.0", "1.2.0", "1.3.0"]
# Keep those ordered
api_versions = [
"0.15.0",
"0.15.1",
"0.16.0",
"1.0.0",
"1.1.0",
"1.2.0",
"1.3.0",
]