-
-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update min Swift version and platforms requirements (#57)
* Update minimum Swift version to 5.6 and make platform versions consistent. * CI and exports cleanup
- Loading branch information
Showing
4 changed files
with
22 additions
and
43 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,15 @@ | ||
#if !BUILDING_DOCC | ||
#if swift(>=5.8) | ||
|
||
@_documentation(visibility: internal) @_exported import struct BSON.ObjectId | ||
@_documentation(visibility: internal) @_exported import struct MongoKitten.GridFSFile | ||
@_documentation(visibility: internal) @_exported import struct BSON.Document | ||
@_documentation(visibility: internal) @_exported import protocol BSON.Primitive | ||
|
||
#else | ||
|
||
@_exported import struct BSON.ObjectId | ||
@_exported import struct MongoKitten.GridFSFile | ||
@_exported import struct BSON.Document | ||
@_exported import protocol BSON.Primitive | ||
|
||
#endif | ||
#endif |