Skip to content

Commit cd7c3ee

Browse files
authored
Merge pull request #1670 from AllenNeuralDynamics/release-v2.3.2
Release v2.3.2
2 parents 6ebc45b + 242a901 commit cd7c3ee

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
lines changed

schemas/metadata_schema.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25005,8 +25005,8 @@
2500525005
"type": "string"
2500625006
},
2500725007
"schema_version": {
25008-
"const": "2.1.8",
25009-
"default": "2.1.8",
25008+
"const": "2.1.9",
25009+
"default": "2.1.9",
2501025010
"title": "Schema Version",
2501125011
"type": "string"
2501225012
},
@@ -37485,8 +37485,8 @@
3748537485
"type": "string"
3748637486
},
3748737487
"schema_version": {
37488-
"const": "2.2.5",
37489-
"default": "2.2.5",
37488+
"const": "2.2.6",
37489+
"default": "2.2.6",
3749037490
"title": "Schema Version",
3749137491
"type": "string"
3749237492
},

schemas/processing_schema.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -736,8 +736,8 @@
736736
"type": "string"
737737
},
738738
"schema_version": {
739-
"const": "2.1.8",
740-
"default": "2.1.8",
739+
"const": "2.1.9",
740+
"default": "2.1.9",
741741
"title": "Schema Version",
742742
"type": "string"
743743
},

src/aind_data_schema/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
""" base module for aind-data-schema
22
"""
33

4-
__version__ = "2.3.1"
4+
__version__ = "2.3.2"

src/aind_data_schema/core/metadata.py

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

7272
_DESCRIBED_BY_URL = DataCoreModel._DESCRIBED_BY_BASE_URL.default + "aind_data_schema/core/metadata.py"
7373
describedBy: str = Field(default=_DESCRIBED_BY_URL, json_schema_extra={"const": _DESCRIBED_BY_URL})
74-
schema_version: SkipValidation[Literal["2.2.5"]] = Field(default="2.2.5")
74+
schema_version: SkipValidation[Literal["2.2.6"]] = Field(default="2.2.6")
7575
name: str = Field(
7676
...,
7777
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.1.8"]] = Field(default="2.1.8")
102+
schema_version: SkipValidation[Literal["2.1.9"]] = Field(default="2.1.9")
103103

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

0 commit comments

Comments
 (0)