Skip to content

Commit

Permalink
Bump run-results version to v6
Browse files Browse the repository at this point in the history
  • Loading branch information
QMalcolm committed Dec 1, 2023
1 parent e9acf41 commit 21ecdb9
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion core/dbt/contracts/results.py
Original file line number Diff line number Diff line change
Expand Up @@ -249,7 +249,7 @@ def write(self, path: str):


@dataclass
@schema_version("run-results", 5)
@schema_version("run-results", 6)
class RunResultsArtifact(ExecutionResult, ArtifactMixin):
results: Sequence[RunResultOutput]
args: Dict[str, Any] = field(default_factory=dict)
Expand All @@ -275,6 +275,7 @@ def from_execution_results(
def compatible_previous_versions(cls) -> Iterable[Tuple[str, int]]:
return [
("run-results", 4),
("run-results", 5),
]

@classmethod
Expand Down

0 comments on commit 21ecdb9

Please sign in to comment.