Skip to content

Commit c1a3bd0

Browse files
committed
add swift package and increment version
1 parent a2152e7 commit c1a3bd0

File tree

3 files changed

+31
-1
lines changed

3 files changed

+31
-1
lines changed

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,3 +6,6 @@
66
xcuserdata
77
xcuserdata/*
88
*.xcuserdata
9+
.swiftpm/
10+
.vscode/
11+

Package.swift

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
import PackageDescription
2+
3+
let package = Package(
4+
name: "ParselyAnalytics",
5+
platforms: [
6+
.iOS(.v12)
7+
],
8+
products: [
9+
.library(
10+
name: "ParselyAnalytics",
11+
targets: ["ParselyAnalytics"]),
12+
],
13+
dependencies: [],
14+
targets: [
15+
.target(
16+
name: "ParselyAnalytics",
17+
dependencies: [],
18+
path: "ParselyTracker",
19+
resources: [
20+
]
21+
),
22+
.testTarget(
23+
name: "ParselyTrackerTests",
24+
dependencies: ["ParselyAnalytics"],
25+
path: "ParselyTrackerTests")
26+
]
27+
)

ParselyAnalytics.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = "ParselyAnalytics"
3-
s.version = "0.2.0"
3+
s.version = "0.2.1"
44
s.swift_versions = ["4.2", "5.0", "5.1", "5.2", "5.3", "5.4", "5.5"]
55
s.summary = "Parsely analytics integration for iOS"
66
s.homepage = "https://www.parse.ly/help/integration/ios-sdk/"

0 commit comments

Comments
 (0)