Skip to content

Commit

Permalink
🎷 [UPDATE] Minor update on deinit message and pod upgrade.
Browse files Browse the repository at this point in the history
  • Loading branch information
Burak Colak committed Dec 28, 2023
1 parent f398484 commit f67a139
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion ACMNetworking.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |spec|
spec.name = "ACMNetworking"
spec.version = "1.1.6"
spec.version = "1.1.7"
spec.summary = "ACMNetworking iOS Library"
spec.description = <<-DESC
ACMNetworking is a package that help developers to make requests easily.
Expand Down
2 changes: 1 addition & 1 deletion Sources/ACMNetworking/ACMNetworking.swift
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ public class ACMNetworking: NSObject {

/// Public destroy function
deinit {
print("ACMNetworking deinited")
print(ACMNetworkConstants.managerDeinitMessage)
}

/// Cancels the current network request
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,8 @@ public enum ACMNetworkConstants {
public static var httpRetryCount = "Current retry count is %d, total retry count is %d"
/// Error message if data is invalid and could not be parsed
public static var genericErrorMessage = "Generic error : %@"
/// Message if ACMNetworking deinited
public static var managerDeinitMessage = "ACMNetworking deinited"
}

public extension ACMNetworkConstants {
Expand Down

0 comments on commit f67a139

Please sign in to comment.