Skip to content

Commit 9706d08

Browse files
Removed XMLPath Column for common profiles
1 parent 8958a21 commit 9706d08

File tree

7 files changed

+7
-21
lines changed

7 files changed

+7
-21
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# MarkersExtractor Change Log
22

3+
## 0.3.15 (TBA)
4+
5+
### Bug Fixes
6+
7+
- Removed XML Path Column for common profiles (#124)
8+
39
## [0.3.14](https://github.com/TheAcharya/MarkersExtractor/releases/tag/0.3.14) (2025-02-12)
410

511
### Maintenance

Sources/MarkersExtractor/Export/ExportProfile/Profiles/Airtable/AirtableExportProfile Export.swift

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -82,8 +82,6 @@ extension AirtableExportProfile {
8282
dict[.imageFileName] = marker.imageFileName
8383
}
8484

85-
dict[.xmlPath] = marker.xmlPath
86-
8785
return dict
8886
}
8987

@@ -120,8 +118,6 @@ extension AirtableExportProfile {
120118
dict[.imageFileName] = .string(marker.imageFileName)
121119
}
122120

123-
dict[.xmlPath] = .string(marker.xmlPath)
124-
125121
return dict
126122
}
127123
}

Sources/MarkersExtractor/Export/ExportProfile/Profiles/CSV/CSVProfile Export.swift

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -82,8 +82,6 @@ extension CSVProfile {
8282
dict[.imageFileName] = marker.imageFileName
8383
}
8484

85-
dict[.xmlPath] = marker.xmlPath
86-
8785
return dict
8886
}
8987

@@ -120,8 +118,6 @@ extension CSVProfile {
120118
dict[.imageFileName] = .string(marker.imageFileName)
121119
}
122120

123-
dict[.xmlPath] = .string(marker.xmlPath)
124-
125121
return dict
126122
}
127123
}

Sources/MarkersExtractor/Export/ExportProfile/Profiles/Excel/ExcelProfile Export.swift

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -82,8 +82,6 @@ extension ExcelProfile {
8282
dict[.imageFileName] = marker.imageFileName
8383
}
8484

85-
dict[.xmlPath] = marker.xmlPath
86-
8785
return dict
8886
}
8987

@@ -120,8 +118,6 @@ extension ExcelProfile {
120118
dict[.imageFileName] = .string(marker.imageFileName)
121119
}
122120

123-
dict[.xmlPath] = .string(marker.xmlPath)
124-
125121
return dict
126122
}
127123
}

Sources/MarkersExtractor/Export/ExportProfile/Profiles/Notion/NotionExportProfile Export.swift

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -82,8 +82,6 @@ extension NotionExportProfile {
8282
dict[.imageFileName] = marker.imageFileName
8383
}
8484

85-
dict[.xmlPath] = marker.xmlPath
86-
8785
return dict
8886
}
8987

@@ -120,8 +118,6 @@ extension NotionExportProfile {
120118
dict[.imageFileName] = .string(marker.imageFileName)
121119
}
122120

123-
dict[.xmlPath] = .string(marker.xmlPath)
124-
125121
return dict
126122
}
127123
}

Sources/MarkersExtractor/Export/ExportProfile/Profiles/TSV/TSVProfile Export.swift

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -83,8 +83,6 @@ extension TSVProfile {
8383
dict[.imageFileName] = marker.imageFileName
8484
}
8585

86-
dict[.xmlPath] = marker.xmlPath
87-
8886
return dict
8987
}
9088

@@ -121,8 +119,6 @@ extension TSVProfile {
121119
dict[.imageFileName] = .string(marker.imageFileName)
122120
}
123121

124-
dict[.xmlPath] = .string(marker.xmlPath)
125-
126122
return dict
127123
}
128124
}

Sources/MarkersExtractor/Version.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@
66

77
/// Static CLI version number stored in its own file to allow for easier access by automated
88
/// build tools.
9-
public let packageVersion = "0.3.14"
9+
public let packageVersion = "0.3.15"

0 commit comments

Comments
 (0)