Skip to content

Commit eb5264d

Browse files
committed
Prep for 0.8.0 schema release to reflect addition of sameAs
1 parent 40ab34d commit eb5264d

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

dandischema/consts.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
from packaging.version import Version as _Version
22

3-
DANDI_SCHEMA_VERSION = "0.7.0"
3+
DANDI_SCHEMA_VERSION = "0.8.0"
44
ALLOWED_INPUT_SCHEMAS = [
55
"0.4.4",
66
"0.5.1",
@@ -16,12 +16,13 @@
1616
"0.6.8",
1717
"0.6.9",
1818
"0.6.10",
19+
"0.7.0",
1920
DANDI_SCHEMA_VERSION,
2021
]
2122

2223
# We establish migrations (back) to only a few recent versions.
2324
# When adding changes, please consider whether a migration path should be added.
24-
ALLOWED_TARGET_SCHEMAS = ["0.6.10", DANDI_SCHEMA_VERSION]
25+
ALLOWED_TARGET_SCHEMAS = ["0.6.10", "0.7.0", DANDI_SCHEMA_VERSION]
2526

2627
# This allows multiple schemas for validation, whereas target schemas focus on
2728
# migration.

0 commit comments

Comments
 (0)