We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bd9a05a commit b907805Copy full SHA for b907805
Overture.podspec
@@ -1,10 +1,12 @@
1
Pod::Spec.new do |s|
2
s.name = "Overture"
3
- s.version = "0.0.1"
+ s.version = "0.1.0"
4
s.summary = "A library for function composition."
5
6
s.description = <<-DESC
7
A library for function composition.
8
+
9
+ Overture is a collection of functions for building programs with functions.
10
DESC
11
12
s.homepage = "https://github.com/pointfreeco/swift-overture"
@@ -19,8 +21,13 @@ Pod::Spec.new do |s|
19
21
20
22
s.source = {
23
:git => "https://github.com/pointfreeco/swift-overture.git",
- :branch => "master"
24
+ :tag => "0.1.0"
25
}
26
27
+ s.ios.deployment_target = "8.0"
28
+ s.osx.deployment_target = "10.9"
29
+ s.tvos.deployment_target = "9.0"
30
+ s.watchos.deployment_target = "2.0"
31
32
s.source_files = "Sources", "Sources/**/*.swift"
33
end
0 commit comments