Skip to content

Commit

Permalink
update library name
Browse files Browse the repository at this point in the history
  • Loading branch information
cecipirotto committed Aug 6, 2021
1 parent 0d95ea1 commit 1f7b906
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
10 changes: 5 additions & 5 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -2,19 +2,19 @@
import PackageDescription

let package = Package(
name: "PagerTabStrip",
name: "PagerTabStripView",
platforms: [.iOS(.v14), .macOS(.v11)],
products: [
.library(name: "PagerTabStrip", targets: ["PagerTabStrip"])
.library(name: "PagerTabStripView", targets: ["PagerTabStripView"])
],
targets: [
.target(
name: "PagerTabStrip",
name: "PagerTabStripView",
path: "Sources"
),
.testTarget(
name: "PagerTabStripTests",
dependencies: ["PagerTabStrip"],
name: "PagerTabStripViewTests",
dependencies: ["PagerTabStripView"],
path: "Tests"
)
]
Expand Down
8 changes: 4 additions & 4 deletions PagerTabStripView.podspec
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
Pod::Spec.new do |s|
s.name = "PagerTabStripView"
s.version = "1.0.0"
s.summary = "PagerTabStripView allows navigating through pages using a custom navigation bar."
s.homepage = "https://github.com/xmartlabs/PagerTabStrip"
s.version = "1.0.1"
s.summary = "PagerTabStripView allows navigating through pages using a custom navigation bar in SwiftUI."
s.homepage = "https://github.com/xmartlabs/PagerTabStripView"
s.license = { type: 'MIT', file: 'LICENSE' }
s.authors = { "Xmartlabs SRL" => "swift@xmartlabs.com" }
s.source = { git: "https://github.com/xmartlabs/PagerTabStrip.git", tag: s.version.to_s }
s.source = { git: "https://github.com/xmartlabs/PagerTabStripView.git", tag: s.version.to_s }
s.social_media_url = 'https://twitter.com/xmartlabs'
s.ios.deployment_target = '14.0'
s.swift_version = '5.0'
Expand Down

0 comments on commit 1f7b906

Please sign in to comment.