From 7dbc91e064375553956956368a51bf7e914b046a Mon Sep 17 00:00:00 2001 From: Henrik Panhans Date: Tue, 14 Apr 2020 00:34:25 +0200 Subject: [PATCH] bumping podspec --- HPNetwork.podspec | 2 +- Package.swift | 12 ++---------- 2 files changed, 3 insertions(+), 11 deletions(-) diff --git a/HPNetwork.podspec b/HPNetwork.podspec index 8938dfc..dbe9e23 100644 --- a/HPNetwork.podspec +++ b/HPNetwork.podspec @@ -1,7 +1,7 @@ Pod::Spec.new do |spec| spec.name = "HPNetwork" - spec.version = "0.1.0" + spec.version = "0.2.0" spec.summary = "A lightweight but customisable networking stack written in Swift" spec.swift_version = "5.0" diff --git a/Package.swift b/Package.swift index 55dd627..d372214 100644 --- a/Package.swift +++ b/Package.swift @@ -9,20 +9,12 @@ let package = Package( .iOS(.v8), .macOS(.v10_11), .tvOS(.v9), .watchOS(.v3) ], products: [ - // Products define the executables and libraries produced by a package, and make them visible to other packages. - .library( - name: "HPNetwork", - targets: ["HPNetwork"]), - ], - dependencies: [ - // Dependencies declare other packages that this package depends on. + .library(name: "HPNetwork", targets: ["HPNetwork"]), ], targets: [ // Targets are the basic building blocks of a package. A target can define a module or a test suite. // Targets can depend on other targets in this package, and on products in packages which this package depends on. - .target( - name: "HPNetwork", - dependencies: []), + .target(name: "HPNetwork"), .testTarget( name: "HPNetworkTests", dependencies: ["HPNetwork"])