-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
f865dd3
commit f2b9af4
Showing
4 changed files
with
12 additions
and
15 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
3.0 |
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,2 @@ | ||
0.1.0 | ||
* Initial driver release |
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,16 +1,17 @@ | ||
Pod::Spec.new do |s| | ||
s.name = "FaunaDB" | ||
s.version = "1.0.0" | ||
s.summary = "Swift client for FaunaDB." | ||
s.version = "0.1.0" | ||
s.summary = "Swift driver for FaunaDB." | ||
s.homepage = "https://github.com/faunadb/faunadb-swift" | ||
s.author = { "Fauna, Inc" => "[email protected]" } | ||
s.license = { type: 'Mozilla Public License 2.0', file: 'LICENSE' } | ||
s.author = { "Fauna, Inc" => "[email protected]" } | ||
s.source = { git: "https://github.com/faunadb/faunadb-swift.git", tag: s.version.to_s } | ||
s.social_media_url = 'https://twitter.com/faunadb' | ||
s.requires_arc = true | ||
s.source_files = 'Sources/**/*.swift' | ||
s.ios.deployment_target = '9.0' | ||
s.osx.deployment_target = '10.10' | ||
s.tvos.deployment_target = '9.0' | ||
s.source_files = 'Sources/**/*.swift' | ||
|
||
# Multi platform support | ||
s.ios.deployment_target = '9.0' | ||
s.osx.deployment_target = '10.10' | ||
s.tvos.deployment_target = '9.0' | ||
s.watchos.deployment_target = '2.0' | ||
end |