Skip to content

Commit

Permalink
Bumping artifact versions for v1 (#4191)
Browse files Browse the repository at this point in the history
* Bumping artifact versions for v1

* Adding schema in Changelog

* Update CHANGELOG.md

* Update changelog entry

Co-authored-by: Jeremy Cohen <jeremy@dbtlabs.com>

automatic commit by git-black, original commits:
  95d087b
  • Loading branch information
leahwicz authored and iknox-fa committed Feb 8, 2022
1 parent d1b456b commit 6e1f5bb
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion core/dbt/contracts/graph/manifest.py
Original file line number Diff line number Diff line change
Expand Up @@ -1091,7 +1091,7 @@ def __init__(self, macros):


@dataclass
@schema_version('manifest', 4)
@schema_version("manifest", 4)
class WritableManifest(ArtifactMixin):
nodes: Mapping[UniqueID, ManifestNode] = field(
metadata=dict(description=(
Expand Down
4 changes: 2 additions & 2 deletions core/dbt/contracts/results.py
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,7 @@ def write(self, path: str):


@dataclass
@schema_version('run-results', 4)
@schema_version("run-results", 4)
class RunResultsArtifact(ExecutionResult, ArtifactMixin):
results: Sequence[RunResultOutput]
args: Dict[str, Any] = field(default_factory=dict)
Expand Down Expand Up @@ -380,7 +380,7 @@ def from_node_results(


@dataclass
@schema_version('sources', 3)
@schema_version("sources", 3)
class FreshnessExecutionResultArtifact(
ArtifactMixin,
VersionedSchema,
Expand Down

0 comments on commit 6e1f5bb

Please sign in to comment.