Skip to content

Commit e7cd6ff

Browse files
Release 1.0.5
* 🔇 Remove debug logs
1 parent bd54e3d commit e7cd6ff

File tree

4 files changed

+14
-14
lines changed

4 files changed

+14
-14
lines changed

Sample/UserPilotSample/UserpilotSample.xcodeproj/project.pbxproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -915,7 +915,7 @@
915915
"$(inherited)",
916916
"@executable_path/Frameworks",
917917
);
918-
MARKETING_VERSION = 1.0.4;
918+
MARKETING_VERSION = 1.0.5;
919919
PRODUCT_BUNDLE_IDENTIFIER = com.userpilot.sample.dev;
920920
PRODUCT_NAME = "$(TARGET_NAME)";
921921
PROVISIONING_PROFILE_SPECIFIER = "";
@@ -950,7 +950,7 @@
950950
"$(inherited)",
951951
"@executable_path/Frameworks",
952952
);
953-
MARKETING_VERSION = 1.0.4;
953+
MARKETING_VERSION = 1.0.5;
954954
PRODUCT_BUNDLE_IDENTIFIER = com.userpilot.sample;
955955
PRODUCT_NAME = "$(TARGET_NAME)";
956956
PROVISIONING_PROFILE_SPECIFIER = "";

Sources/Userpilot/Utilities/Helper/Utils.swift

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -222,16 +222,16 @@ internal func getWindow() -> UIWindow? {
222222
.filter({ $0.isKeyWindow }).first
223223
}
224224

225-
//internal func print(
226-
// _ items: Any...,
227-
// separator: String = " ",
228-
// terminator: String = "\n"
229-
//) {
230-
// if Environment.environmentType == .DEVELOPMENT {
231-
// let output = items.map { "\($0)" }.joined(separator: separator)
232-
// Swift.print(output, terminator: terminator)
233-
// }
234-
//}
225+
internal func print(
226+
_ items: Any...,
227+
separator: String = " ",
228+
terminator: String = "\n"
229+
) {
230+
if Environment.environmentType == .DEVELOPMENT {
231+
let output = items.map { "\($0)" }.joined(separator: separator)
232+
Swift.print(output, terminator: terminator)
233+
}
234+
}
235235

236236
/// Sanitizes a payload by filtering out unsupported property types and applying key transformations.
237237
///

Sources/Userpilot/Version.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,5 +14,5 @@ import Foundation
1414
/// The current version of the Userpilot SDK.
1515
private let versionMajor = "1"
1616
private let versionMinor = "0"
17-
private let versionPatch = "4"
17+
private let versionPatch = "5"
1818
let userpilotVersion = "\(versionMajor).\(versionMinor).\(versionPatch)"

Userpilot.podspec

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

33
spec.name = "Userpilot"
44
spec.module_name = "Userpilot"
5-
spec.version = "1.0.4"
5+
spec.version = "1.0.5"
66
spec.summary = "Userpilot iOS SDK allows you to integrate Userpilot experiences into your native iOS apps"
77

88
spec.description = <<-DESC

0 commit comments

Comments
 (0)