Skip to content

Commit 11b3d3e

Browse files
committed
v5.10.5
1 parent e64880e commit 11b3d3e

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

frictionless/assets/VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
5.10.4
1+
5.10.5

frictionless/project/project.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -152,6 +152,12 @@ def read_json(self, path: str) -> Any:
152152
def write_json(self, path: str, *, data: Any):
153153
return self.filesystem.write_json(path, data=data)
154154

155+
# Metadata
156+
157+
def write_metadata(self, path: str, *, data: Dict[str, Any]):
158+
self.database.delete_record(path)
159+
return self.filesystem.write_json(path, data=data)
160+
155161
# Package
156162

157163
def create_package(self):

0 commit comments

Comments
 (0)