Compare commits

...

4 Commits

Author SHA1 Message Date
Wolf McNally d5aa204302 Build as dynamic library. 2019-12-14 16:32:02 -08:00
Wolf McNally 346092d519 Added minimum platform versions. 2019-09-27 15:10:38 -07:00
Wolf McNally 4a740d76ea Minor update. 2019-06-10 15:04:09 -07:00
Wolf McNally b8fc5b2b42 Updated for Swift 5. 2019-03-25 18:13:22 -07:00
3 changed files with 9 additions and 6 deletions

5
.gitignore vendored
View File

@ -21,9 +21,8 @@ DerivedData
# Bundler
.bundle
# Swift Package Manager
.build
.swiftpm
Package.resolved
Carthage/Build
Pods/

View File

@ -1,11 +1,15 @@
// swift-tools-version:4.2
// swift-tools-version:5.1
import PackageDescription
let package = Package(
name: "WolfWith",
platforms: [
.iOS(.v9), .macOS(.v10_13), .tvOS(.v11)
],
products: [
.library(
name: "WolfWith",
type: .dynamic,
targets: ["WolfWith"]),
],
targets: [

View File

@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'WolfWith'
s.version = '1.0.3'
s.version = '2.0.1'
s.summary = 'A Swift implementation of the With-Operator.'
# s.description = <<-DESC
@ -14,7 +14,7 @@ Pod::Spec.new do |s|
s.source_files = 'Sources/WolfWith/**/*'
s.swift_version = '4.2'
s.swift_version = '5.0'
s.ios.deployment_target = '9.3'
s.macos.deployment_target = '10.13'