File tree Expand file tree Collapse file tree 4 files changed +5
-2
lines changed
Expand file tree Collapse file tree 4 files changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -45,6 +45,8 @@ class FileChange:
4545 history : Optional [dict ] = None
4646 # some functions (MerginProject.compare_file_sets) are adding location dict to the change from project info
4747 location : Optional [str ] = None
48+ # list of diff filenames associated with this change
49+ diffs : Optional [List [str ]] = None
4850
4951 def get_diff (self ) -> Optional [FileDiffChange ]:
5052 if self .diff :
Original file line number Diff line number Diff line change @@ -28,6 +28,7 @@ def test_local_changes_from_dict():
2828 "path" : "base.gpkg" ,
2929 "size" : 98304 ,
3030 "version" : "v1" ,
31+ "diffs" : ["diff" ],
3132 }
3233 ],
3334 }
Original file line number Diff line number Diff line change 11# The version is also stored in ../setup.py
2- __version__ = "0.12.1 "
2+ __version__ = "0.12.2 "
33
44# There seems to be no single nice way to keep version info just in one place:
55# https://packaging.python.org/guides/single-sourcing-package-version/
Original file line number Diff line number Diff line change 55
66setup (
77 name = "mergin-client" ,
8- version = "0.12.1 " ,
8+ version = "0.12.2 " ,
99 url = "https://github.com/MerginMaps/python-api-client" ,
1010 license = "MIT" ,
1111 author = "Lutra Consulting Ltd." ,
You can’t perform that action at this time.
0 commit comments