From f0b7f261c1ec4927287c9dbe9da00ebcf43587a0 Mon Sep 17 00:00:00 2001 From: Yaroslav Halchenko Date: Mon, 27 Oct 2025 15:50:44 -0400 Subject: [PATCH] Release new schema 0.7.0 for addition of the releaseNotes Reminder to myself: we run checks on no changes to schema only on PRs with "release" tag. Thus we did not run checks when we actually adjusted the schema in https://github.com/dandi/dandi-schema/pull/185 by @bendichter. Then I rushed merging https://github.com/dandi/dandi-schema/pull/341 as I was not expecting surprises from adjusting labels (forgot about above). The moral again, do not rush merging - let CI finish! ;) --- dandischema/consts.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/dandischema/consts.py b/dandischema/consts.py index bf6c7abc..cf02329d 100644 --- a/dandischema/consts.py +++ b/dandischema/consts.py @@ -1,6 +1,6 @@ from packaging.version import Version as _Version -DANDI_SCHEMA_VERSION = "0.6.10" +DANDI_SCHEMA_VERSION = "0.7.0" ALLOWED_INPUT_SCHEMAS = [ "0.4.4", "0.5.1", @@ -15,6 +15,7 @@ "0.6.7", "0.6.8", "0.6.9", + "0.6.10", DANDI_SCHEMA_VERSION, ]