Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add v4.4 schema with test enhancements #85

Merged
merged 3 commits into from
Aug 21, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion kcidb_io/schema/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
from kcidb_io.schema.v04_01 import Version as V4_1 # noqa: F401
from kcidb_io.schema.v04_02 import Version as V4_2 # noqa: F401
from kcidb_io.schema.v04_03 import Version as V4_3 # noqa: F401
from kcidb_io.schema.v04_04 import Version as V4_4 # noqa: F401

# Legacy versions
V1 = V1_1 # noqa: F401
Expand All @@ -15,4 +16,4 @@
V4 = V4_0 # noqa: F401

# Latest version of the schema
LATEST = V4_3
LATEST = V4_4
Loading
Loading