We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 40ab34d commit eb5264dCopy full SHA for eb5264d
dandischema/consts.py
@@ -1,6 +1,6 @@
1
from packaging.version import Version as _Version
2
3
-DANDI_SCHEMA_VERSION = "0.7.0"
+DANDI_SCHEMA_VERSION = "0.8.0"
4
ALLOWED_INPUT_SCHEMAS = [
5
"0.4.4",
6
"0.5.1",
@@ -16,12 +16,13 @@
16
"0.6.8",
17
"0.6.9",
18
"0.6.10",
19
+ "0.7.0",
20
DANDI_SCHEMA_VERSION,
21
]
22
23
# We establish migrations (back) to only a few recent versions.
24
# When adding changes, please consider whether a migration path should be added.
-ALLOWED_TARGET_SCHEMAS = ["0.6.10", DANDI_SCHEMA_VERSION]
25
+ALLOWED_TARGET_SCHEMAS = ["0.6.10", "0.7.0", DANDI_SCHEMA_VERSION]
26
27
# This allows multiple schemas for validation, whereas target schemas focus on
28
# migration.
0 commit comments