Skip to content

Commit af13999

Browse files
committed
Fixed deps.
1 parent 2f85342 commit af13999

File tree

4 files changed

+17
-8
lines changed

4 files changed

+17
-8
lines changed

Example App/NativeUIKit.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

NativeUIKit.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Pod::Spec.new do |s|
22

33
s.name = 'NativeUIKit'
4-
s.version = '1.2.2'
4+
s.version = '1.2.4'
55
s.summary = 'Mimicrated views and controls to native Apple appearance.'
66
s.homepage = 'https://github.com/ivanvorobei/NativeUIKit'
77
s.source = { :git => 'https://github.com/ivanvorobei/NativeUIKit.git', :tag => s.version }

Package.swift

Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,18 @@ let package = Package(
1313
)
1414
],
1515
dependencies: [
16-
.package(name: "SparrowKit", url: "https://github.com/ivanvorobei/SparrowKit", .exact("3.5.0")),
17-
.package(name: "SPPerspective", url: "https://github.com/ivanvorobei/SPPerspective", .exact("1.4.1")),
18-
.package(name: "SPDiffable", url: "https://github.com/ivanvorobei/SPDiffable", .exactItem("4.0.0"))
16+
.package(
17+
name: "SparrowKit",
18+
url: "https://github.com/ivanvorobei/SparrowKit", .upToNextMajor(from: "3.5.0")
19+
),
20+
.package(
21+
name: "SPPerspective",
22+
url: "https://github.com/ivanvorobei/SPPerspective", .upToNextMajor(from: "1.4.1")
23+
),
24+
.package(
25+
name: "SPDiffable",
26+
url: "https://github.com/ivanvorobei/SPDiffable", .upToNextMajor(from: "4.0.0")
27+
)
1928
],
2029
targets: [
2130
.target(

0 commit comments

Comments
 (0)