Skip to content

Commit bdec12d

Browse files
committed
Merge branch 'main' into release-v2.7.2
2 parents 73a9751 + 9fc0a81 commit bdec12d

5 files changed

Lines changed: 9 additions & 8 deletions

File tree

.github/workflows/tag_and_publish_main.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ on:
33
push:
44
branches:
55
- main
6+
workflow_dispatch:
67

78
jobs:
89
tag_and_publish:

schemas/metadata_schema.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27031,8 +27031,8 @@
2703127031
"type": "string"
2703227032
},
2703327033
"schema_version": {
27034-
"const": "2.2.7",
27035-
"default": "2.2.7",
27034+
"const": "2.2.8",
27035+
"default": "2.2.8",
2703627036
"title": "Schema Version",
2703727037
"type": "string"
2703827038
},
@@ -39934,8 +39934,8 @@
3993439934
"type": "string"
3993539935
},
3993639936
"schema_version": {
39937-
"const": "2.7.0",
39938-
"default": "2.7.0",
39937+
"const": "2.7.1",
39938+
"default": "2.7.1",
3993939939
"title": "Schema Version",
3994039940
"type": "string"
3994139941
},

schemas/processing_schema.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -757,8 +757,8 @@
757757
"type": "string"
758758
},
759759
"schema_version": {
760-
"const": "2.2.7",
761-
"default": "2.2.7",
760+
"const": "2.2.8",
761+
"default": "2.2.8",
762762
"title": "Schema Version",
763763
"type": "string"
764764
},

src/aind_data_schema/core/metadata.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ class Metadata(DataCoreModel):
7373

7474
_DESCRIBED_BY_URL = DataCoreModel._DESCRIBED_BY_BASE_URL.default + "aind_data_schema/core/metadata.py"
7575
describedBy: str = Field(default=_DESCRIBED_BY_URL, json_schema_extra={"const": _DESCRIBED_BY_URL})
76-
schema_version: SkipValidation[Literal["2.7.0"]] = Field(default="2.7.0")
76+
schema_version: SkipValidation[Literal["2.7.1"]] = Field(default="2.7.1")
7777
name: str = Field(
7878
...,
7979
description="Name of the data asset.",

src/aind_data_schema/core/processing.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ class Processing(DataCoreModel):
9999

100100
_DESCRIBED_BY_URL: str = DataCoreModel._DESCRIBED_BY_BASE_URL.default + "aind_data_schema/core/processing.py"
101101
describedBy: str = Field(default=_DESCRIBED_BY_URL, json_schema_extra={"const": _DESCRIBED_BY_URL})
102-
schema_version: SkipValidation[Literal["2.2.7"]] = Field(default="2.2.7")
102+
schema_version: SkipValidation[Literal["2.2.8"]] = Field(default="2.2.8")
103103

104104
data_processes: List[DataProcess] = Field(..., title="Data processing")
105105
pipelines: Optional[List[Code]] = Field(

0 commit comments

Comments
 (0)