Skip to content

Commit 99a008f

Browse files
feat(global): upgrade dependencies ✨ (#451)
1 parent 53b218c commit 99a008f

4 files changed

Lines changed: 9 additions & 9 deletions

File tree

waosSwift.xcodeproj/project.pbxproj

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1963,15 +1963,15 @@
19631963
repositoryURL = "https://github.com/RxSwiftCommunity/RxOptional.git";
19641964
requirement = {
19651965
kind = upToNextMajorVersion;
1966-
minimumVersion = 5.0.4;
1966+
minimumVersion = 5.0.5;
19671967
};
19681968
};
19691969
BF3533132602BD97005EA507 /* XCRemoteSwiftPackageReference "RxFlow" */ = {
19701970
isa = XCRemoteSwiftPackageReference;
19711971
repositoryURL = "https://github.com/RxSwiftCommunity/RxFlow.git";
19721972
requirement = {
19731973
kind = upToNextMajorVersion;
1974-
minimumVersion = 2.12.4;
1974+
minimumVersion = 2.13.0;
19751975
};
19761976
};
19771977
BF35331D2602BE6C005EA507 /* XCRemoteSwiftPackageReference "CocoaLumberjack" */ = {
@@ -2003,7 +2003,7 @@
20032003
repositoryURL = "https://github.com/xmartlabs/Eureka.git";
20042004
requirement = {
20052005
kind = upToNextMajorVersion;
2006-
minimumVersion = 5.3.4;
2006+
minimumVersion = 5.3.6;
20072007
};
20082008
};
20092009
BF3533332602BED3005EA507 /* XCRemoteSwiftPackageReference "RxAppState" */ = {
@@ -2019,7 +2019,7 @@
20192019
repositoryURL = "https://github.com/SnapKit/SnapKit.git";
20202020
requirement = {
20212021
kind = upToNextMajorVersion;
2022-
minimumVersion = 5.0.1;
2022+
minimumVersion = 5.6.0;
20232023
};
20242024
};
20252025
BF35333D2602BF07005EA507 /* XCRemoteSwiftPackageReference "KeychainAccess" */ = {
@@ -2043,7 +2043,7 @@
20432043
repositoryURL = "https://github.com/onevcat/Kingfisher.git";
20442044
requirement = {
20452045
kind = upToNextMajorVersion;
2046-
minimumVersion = 7.1.2;
2046+
minimumVersion = 7.2.4;
20472047
};
20482048
};
20492049
BF3533532602BFE5005EA507 /* XCRemoteSwiftPackageReference "Down" */ = {

waosSwift/lib/helpers/Libs/PopupView/PopupView.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -227,7 +227,7 @@ public struct Popup<PopupContent>: ViewModifier where PopupContent: View {
227227
}
228228
.frame(width: screenSize.width)
229229
.offset(x: 0, y: currentOffset)
230-
.animation(animation)
230+
.animation(animation, value: true)
231231
}
232232
}
233233
}

waosSwift/lib/helpers/Libs/ReusableKit/ReusableKit.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#if os(iOS)
22
import UIKit
33

4-
public protocol CellType: class {
4+
public protocol CellType: AnyObject {
55
var reuseIdentifier: String? { get }
66
}
77

@@ -34,7 +34,7 @@ public struct ReusableCell<Cell: CellType> {
3434
}
3535
}
3636

37-
public protocol ViewType: class {
37+
public protocol ViewType: AnyObject {
3838
}
3939

4040
/// A generic class that represents reusable views.

waosSwift/modules/app/AppServicesProvider.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
protocol AppServicesProviderType: class {
1+
protocol AppServicesProviderType: AnyObject {
22
var tasksService: TasksServiceType { get }
33
var authService: AuthServiceType { get }
44
var userService: UserServiceType { get }

0 commit comments

Comments
 (0)