Skip to content

Commit 0ccc0cd

Browse files
authored
Bump up to v0.5.0 (#63)
1 parent 8e7b8a3 commit 0ccc0cd

File tree

2 files changed

+17
-1
lines changed

2 files changed

+17
-1
lines changed

README.md

+16
Original file line numberDiff line numberDiff line change
@@ -34,12 +34,14 @@ Those are the classes to parse dbt artifacts.
3434
- [ManifestV8](dbt_artifacts_parser/parsers/manifest/manifest_v8.py) for manifest.json v8
3535
- [ManifestV9](dbt_artifacts_parser/parsers/manifest/manifest_v9.py) for manifest.json v9
3636
- [ManifestV10](dbt_artifacts_parser/parsers/manifest/manifest_v10.py) for manifest.json v10
37+
- [ManifestV11](dbt_artifacts_parser/parsers/manifest/manifest_v11.py) for manifest.json v11
3738

3839
### Run Results
3940
- [RunResultsV1](dbt_artifacts_parser/parsers/manifest/manifest_v1.py) for run_results.json v1
4041
- [RunResultsV2](dbt_artifacts_parser/parsers/manifest/manifest_v2.py) for run_results.json v2
4142
- [RunResultsV3](dbt_artifacts_parser/parsers/manifest/manifest_v3.py) for run_results.json v3
4243
- [RunResultsV4](dbt_artifacts_parser/parsers/manifest/manifest_v4.py) for run_results.json v4
44+
- [RunResultsV5](dbt_artifacts_parser/parsers/manifest/manifest_v5.py) for run_results.json v5
4345

4446
### Sources
4547
- [SourcesV1](dbt_artifacts_parser/parsers/sources/sources_v1.py) for sources.json v1
@@ -148,6 +150,13 @@ from dbt_artifacts_parser.parser import parse_manifest_v10
148150
with open("path/to/manifest.json", "r") as fp:
149151
manifest_dict = json.load(fp)
150152
manifest_obj = parse_manifest_v10(manifest=manifest_dict)
153+
154+
# parse manifest.json v11
155+
from dbt_artifacts_parser.parser import parse_manifest_v11
156+
157+
with open("path/to/manifest.json", "r") as fp:
158+
manifest_dict = json.load(fp)
159+
manifest_obj = parse_manifest_v11(manifest=manifest_dict)
151160
```
152161

153162
### Parse run-results.json
@@ -189,6 +198,13 @@ from dbt_artifacts_parser.parser import parse_run_results_v4
189198
with open("path/to/run-results.json", "r") as fp:
190199
run_results_dict = json.load(fp)
191200
run_results_obj = parse_run_results_v4(run_results=run_results_dict)
201+
202+
# parse run-results.json v5
203+
from dbt_artifacts_parser.parser import parse_run_results_v5
204+
205+
with open("path/to/run-results.json", "r") as fp:
206+
run_results_dict = json.load(fp)
207+
run_results_obj = parse_run_results_v5(run_results=run_results_dict)
192208
```
193209

194210
### Parse sources.json

dbt_artifacts_parser/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,4 @@
1717
"""
1818
A dbt artifacts parser in python
1919
"""
20-
__version__ = "0.4.2"
20+
__version__ = "0.5.0"

0 commit comments

Comments
 (0)