From b907805523ca75a0c9fdaaf1bdf81b3fe3360ac7 Mon Sep 17 00:00:00 2001 From: Stephen Celis Date: Tue, 15 May 2018 00:00:29 -0400 Subject: [PATCH] 0.1.0 --- Overture.podspec | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/Overture.podspec b/Overture.podspec index 9ccd301..ef36026 100644 --- a/Overture.podspec +++ b/Overture.podspec @@ -1,10 +1,12 @@ Pod::Spec.new do |s| s.name = "Overture" - s.version = "0.0.1" + s.version = "0.1.0" s.summary = "A library for function composition." s.description = <<-DESC A library for function composition. + + Overture is a collection of functions for building programs with functions. DESC s.homepage = "https://github.com/pointfreeco/swift-overture" @@ -19,8 +21,13 @@ Pod::Spec.new do |s| s.source = { :git => "https://github.com/pointfreeco/swift-overture.git", - :branch => "master" + :tag => "0.1.0" } + s.ios.deployment_target = "8.0" + s.osx.deployment_target = "10.9" + s.tvos.deployment_target = "9.0" + s.watchos.deployment_target = "2.0" + s.source_files = "Sources", "Sources/**/*.swift" end