diff --git a/.gitignore b/.gitignore index a4ea9ea..126c3e1 100644 --- a/.gitignore +++ b/.gitignore @@ -6,3 +6,6 @@ xcuserdata xcuserdata/* *.xcuserdata +.swiftpm/ +.vscode/ + diff --git a/Package.swift b/Package.swift new file mode 100644 index 0000000..646c1ff --- /dev/null +++ b/Package.swift @@ -0,0 +1,27 @@ +import PackageDescription + +let package = Package( + name: "ParselyAnalytics", + platforms: [ + .iOS(.v12) + ], + products: [ + .library( + name: "ParselyAnalytics", + targets: ["ParselyAnalytics"]), + ], + dependencies: [], + targets: [ + .target( + name: "ParselyAnalytics", + dependencies: [], + path: "ParselyTracker", + resources: [ + ] + ), + .testTarget( + name: "ParselyTrackerTests", + dependencies: ["ParselyAnalytics"], + path: "ParselyTrackerTests") + ] +) \ No newline at end of file diff --git a/ParselyAnalytics.podspec b/ParselyAnalytics.podspec index 1071feb..a049dcd 100644 --- a/ParselyAnalytics.podspec +++ b/ParselyAnalytics.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = "ParselyAnalytics" - s.version = "0.2.0" + s.version = "0.2.1" s.swift_versions = ["4.2", "5.0", "5.1", "5.2", "5.3", "5.4", "5.5"] s.summary = "Parsely analytics integration for iOS" s.homepage = "https://www.parse.ly/help/integration/ios-sdk/"