Skip to content

Commit

Permalink
add swift package and increment version
Browse files Browse the repository at this point in the history
  • Loading branch information
abelsonlive committed Apr 5, 2023
1 parent a2152e7 commit c1a3bd0
Show file tree
Hide file tree
Showing 3 changed files with 31 additions and 1 deletion.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,6 @@
xcuserdata
xcuserdata/*
*.xcuserdata
.swiftpm/
.vscode/

27 changes: 27 additions & 0 deletions Package.swift
Original file line number Diff line number Diff line change
@@ -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")
]
)
2 changes: 1 addition & 1 deletion ParselyAnalytics.podspec
Original file line number Diff line number Diff line change
@@ -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/"
Expand Down

0 comments on commit c1a3bd0

Please sign in to comment.