Skip to content

Commit

Permalink
Public release 1.9.1
Browse files Browse the repository at this point in the history
Public release 1.9.1
  • Loading branch information
EugeneIOs committed Oct 1, 2021
2 parents 91ad889 + 5434a34 commit 4903fa6
Show file tree
Hide file tree
Showing 123 changed files with 140 additions and 145 deletions.
6 changes: 1 addition & 5 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -44,11 +44,7 @@ let package = Package(
"VGSCollectSDK.h"
]),
.target(name: "VGSPaymentCards",
path: "Sources/VGSPaymentCards/",
exclude: [
"Info.plist",
"VGSPaymentCards.h"
]
path: "Sources/VGSPaymentCards/"
),
.testTarget(
name: "FrameworkTests",
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ xcrun swift -version
> NOTE: In some cases you can have multiple Swift tools versions installed.

Follow the official Apple SPM guide [instructions](https://developer.apple.com/documentation/xcode/adding_package_dependencies_to_your_app) for more details.\n
Follow the official Apple SPM guide [instructions](https://developer.apple.com/documentation/xcode/adding_package_dependencies_to_your_app) for more details.
To use Swift Package Manager, in Xcode add the https://github.com/verygoodsecurity/vgs-collect-ios.git dependency and choose the `Exact` version.
<p align="center">
<img src="images/VGSCollect_CardScan_SPM_1.png" width="70%">
Expand Down
10 changes: 4 additions & 6 deletions Sources/VGSCollectSDK/Core/Analytics/VGSAnalyticsClient.swift
Original file line number Diff line number Diff line change
Expand Up @@ -109,13 +109,11 @@ public class VGSAnalyticsClient {
private static var sdkIntegration: String {
#if COCOAPODS
return "COCOAPODS"
#elseif SWIFT_PACKAGE
return "SPM"
#else
return "OTHER"
#endif

#if SWIFT_PACKAGE
return "SPM"
#endif

return "OTHER"
}
}

Expand Down
2 changes: 1 addition & 1 deletion Sources/VGSCollectSDK/Utils/Extensions/Utils.swift
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ internal class Utils {

/// VGS Collect SDK Version.
/// Necessary since SPM doesn't track info plist correctly: https://forums.swift.org/t/add-info-plist-on-spm-bundle/40274/5
static let vgsCollectVersion: String = "1.9.0"
static let vgsCollectVersion: String = "1.9.1"
}

extension Dictionary {
Expand Down
4 changes: 2 additions & 2 deletions Sources/VGSPaymentCards/Enums/CheckSumAlgoritmType.swift
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ public enum CheckSumAlgorithmType {
}

public extension CheckSumAlgorithmType {

public func validate(_ input: String) -> Bool {
/// Validate input String with specified algorithm.
func validate(_ input: String) -> Bool {
switch self {
case .luhn:
return Self.validateWithLuhnAlgorithm(with: input)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ class VGSDeepMergeUtilsTests: XCTestCase {

let actualJSONToSubmit: JsonData = VGSCollect.mapStoredInputDataForSubmitWithArrays(fields: textFields, mergeArrayPolicy: .merge, extraData: extraData)

let debugDeepMergeOutput = "index: \(index). \nFielsdData *\(fieldData) \nExtra data: \(extraData) \nshould produce \(expectedSubmitJSON), \n\ncomment: \(comment)* \n\nActual result: \(actualJSONToSubmit)"
let debugDeepMergeOutput = "index: \(index). \nFielsdData *\(fieldData) \nExtra data: \(String(describing: extraData)) \nshould produce \(expectedSubmitJSON), \n\ncomment: \(comment)* \n\nActual result: \(actualJSONToSubmit)"

XCTAssertTrue(actualJSONToSubmit == expectedSubmitJSON, debugDeepMergeOutput)
}
Expand Down Expand Up @@ -131,7 +131,7 @@ class VGSDeepMergeUtilsTests: XCTestCase {

let actualJSONToSubmit: JsonData = VGSCollect.mapStoredInputDataForSubmitWithArrays(fields: textFields, mergeArrayPolicy: .overwrite, extraData: extraData)

let debugDeepMergeOutput = "index: \(index). \nFielsdData *\(fieldData) \nExtra data: \(extraData) \nshould produce \(expectedSubmitJSON), \n\ncomment: \(comment)* \n\nActual result: \(actualJSONToSubmit)"
let debugDeepMergeOutput = "index: \(index). \nFielsdData *\(fieldData) \nExtra data: \(String(describing: extraData)) \nshould produce \(expectedSubmitJSON), \n\ncomment: \(comment)* \n\nActual result: \(actualJSONToSubmit)"

XCTAssertTrue(actualJSONToSubmit == expectedSubmitJSON, debugDeepMergeOutput)
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ class VGSFieldNameToJSONTests: XCTestCase {
let comment = item.comment

var actualResultJSON: JsonData = [:]
_ = VGSFieldNameToJSONDataMapper.mapFieldNameToJSON(fieldName, value: fieldValue, json: &actualResultJSON)
VGSFieldNameToJSONDataMapper.mapFieldNameToJSON(fieldName, value: fieldValue, json: &actualResultJSON)

let debugOutput = "index: \(index). \nFieldName *\(fieldName) should produce \(expectedResult), \n\ncomment: \(comment)* \n\nActual result: \(actualResultJSON)"

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ class VGSFlatJSONStructMappingTests: XCTestCase {
for index in 0..<testData.count {
let item = testData[index]
let fieldData = item.fieldsData
let expectedCollectJSON = item.expectedCollectJSON
let extraData = item.extraData
let expectedSubmitJSON = item.expectedSubmitJSON
let comment = item.comment ?? ""
Expand All @@ -33,7 +32,7 @@ class VGSFlatJSONStructMappingTests: XCTestCase {

let actualJSONToSubmit: JsonData = VGSCollect.mapStoredInpuToFlatJSON(with: extraData, from: textFields)

let debugDeepMergeOutput = "index: \(index). \nFielsdData *\(fieldData) \nExtra data: \(extraData) \nshould produce \(expectedSubmitJSON), \n\ncomment: \(comment)* \n\nActual result: \(actualJSONToSubmit)"
let debugDeepMergeOutput = "index: \(index). \nFielsdData *\(fieldData) \nExtra data: \(String(describing: extraData)) \nshould produce \(expectedSubmitJSON), \n\ncomment: \(comment)* \n\nActual result: \(actualJSONToSubmit)"

XCTAssertTrue(actualJSONToSubmit == expectedSubmitJSON, debugDeepMergeOutput)
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -108,13 +108,13 @@ class VGSTextFieldTests: VGSCollectBaseTestCase {
/// Test positive case with equal input
field1.textField.secureText = input1
field2.textField.secureText = input1
XCTAssertTrue(field1.isContentEqual(field2), "Fields not equal error: \(field1.textField.secureText) != \(field2.textField.secureText))")
XCTAssertTrue(field2.isContentEqual(field1), "Fields not equal error: \(field2.textField.secureText) != \(field1.textField.secureText))")
XCTAssertTrue(field1.isContentEqual(field2), "Fields not equal error: \(String(describing: field1.textField.secureText)) != \(String(describing: field2.textField.secureText)))")
XCTAssertTrue(field2.isContentEqual(field1), "Fields not equal error: \(String(describing: field2.textField.secureText)) != \(String(describing: field1.textField.secureText)))")

/// Test negative case with different input
field2.textField.secureText = input2
XCTAssertFalse(field1.isContentEqual(field2), "Fields equal error: \(field1.textField.secureText) == \(field2.textField.secureText))")
XCTAssertFalse(field2.isContentEqual(field1), "Fields equal error: \(field2.textField.secureText) == \(field1.textField.secureText))")
XCTAssertFalse(field1.isContentEqual(field2), "Fields equal error: \(String(describing: field1.textField.secureText)) == \(String(describing: field2.textField.secureText)))")
XCTAssertFalse(field2.isContentEqual(field1), "Fields equal error: \(String(describing: field2.textField.secureText)) == \(String(describing: field1.textField.secureText)))")
}
}
}
Expand All @@ -137,14 +137,14 @@ class VGSTextFieldTests: VGSCollectBaseTestCase {
/// Test positive case with equal input
expDate1.textField.secureText = input1
expDate2.textField.secureText = input1
XCTAssertTrue(expDate1.isContentEqual(expDate2), "Fields not equal error: \(expDate1.textField.secureText) != \(expDate1.textField.secureText))")
XCTAssertTrue(expDate2.isContentEqual(expDate1), "Fields not equal error: \(expDate2.textField.secureText) != \(expDate1.textField.secureText))")
XCTAssertTrue(expDate1.isContentEqual(expDate2), "Fields not equal error: \(String(describing: expDate1.textField.secureText)) != \(String(describing: expDate1.textField.secureText)))")
XCTAssertTrue(expDate2.isContentEqual(expDate1), "Fields not equal error: \(String(describing: expDate2.textField.secureText)) != \(String(describing: expDate1.textField.secureText)))")

/// Test negative case with different input
expDate1.textField.secureText = input1
expDate2.textField.secureText = input2
XCTAssertFalse(expDate1.isContentEqual(expDate2), "Fields equal error: \(expDate1.textField.secureText) == \(expDate1.textField.secureText))")
XCTAssertFalse(expDate2.isContentEqual(expDate1), "Fields equal error: \(expDate2.textField.secureText) == \(expDate1.textField.secureText))")
XCTAssertFalse(expDate1.isContentEqual(expDate2), "Fields equal error: \(String(describing: expDate1.textField.secureText)) == \(String(describing: expDate1.textField.secureText)))")
XCTAssertFalse(expDate2.isContentEqual(expDate1), "Fields equal error: \(String(describing: expDate2.textField.secureText)) == \(String(describing: expDate1.textField.secureText)))")
}
}

2 changes: 1 addition & 1 deletion VGSCollectSDK.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |spec|
spec.name = 'VGSCollectSDK'
spec.version = '1.9.0'
spec.version = '1.9.1'
spec.summary = 'VGS Collect - is a product suite that allows customers to collect information securely without possession of it.'
spec.swift_version = '5.0'
spec.description = <<-DESC
Expand Down
8 changes: 5 additions & 3 deletions VGSCollectSDK.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -1308,7 +1308,7 @@
isa = PBXProject;
attributes = {
LastSwiftUpdateCheck = 1250;
LastUpgradeCheck = 1140;
LastUpgradeCheck = 1300;
ORGANIZATIONNAME = VGS;
TargetAttributes = {
320B0C09266F75A800167801 = {
Expand Down Expand Up @@ -2073,6 +2073,7 @@
CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
CLANG_WARN_STRICT_PROTOTYPES = YES;
CLANG_WARN_SUSPICIOUS_MOVE = YES;
Expand Down Expand Up @@ -2139,6 +2140,7 @@
CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
CLANG_WARN_STRICT_PROTOTYPES = YES;
CLANG_WARN_SUSPICIOUS_MOVE = YES;
Expand Down Expand Up @@ -2196,7 +2198,7 @@
"@executable_path/Frameworks",
"@loader_path/Frameworks",
);
MARKETING_VERSION = 1.9.0;
MARKETING_VERSION = 1.9.1;
PRODUCT_BUNDLE_IDENTIFIER = com.vgs.framework;
PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)";
PROVISIONING_PROFILE_SPECIFIER = "";
Expand Down Expand Up @@ -2232,7 +2234,7 @@
"@executable_path/Frameworks",
"@loader_path/Frameworks",
);
MARKETING_VERSION = 1.9.0;
MARKETING_VERSION = 1.9.1;
PRODUCT_BUNDLE_IDENTIFIER = com.vgs.framework;
PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)";
PROVISIONING_PROFILE_SPECIFIER = "";
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<Scheme
LastUpgradeVersion = "1140"
LastUpgradeVersion = "1300"
version = "1.7">
<BuildAction
parallelizeBuildables = "YES"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<Scheme
LastUpgradeVersion = "1160"
LastUpgradeVersion = "1300"
version = "1.3">
<BuildAction
parallelizeBuildables = "YES"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<Scheme
LastUpgradeVersion = "1160"
LastUpgradeVersion = "1300"
version = "1.3">
<BuildAction
parallelizeBuildables = "YES"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<Scheme
LastUpgradeVersion = "1240"
LastUpgradeVersion = "1300"
version = "1.3">
<BuildAction
parallelizeBuildables = "YES"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<Scheme
LastUpgradeVersion = "1140"
LastUpgradeVersion = "1300"
version = "1.3">
<BuildAction
parallelizeBuildables = "YES"
Expand Down
2 changes: 1 addition & 1 deletion docs/Classes/CardState.html
Original file line number Diff line number Diff line change
Expand Up @@ -419,7 +419,7 @@ <h4>Declaration</h4>
</article>
</div>
<section class="footer">
<p>&copy; 2021 <a class="link" href="https://verygoodsecurity.com" target="_blank" rel="external">Very Good Security</a>. All rights reserved. (Last updated: 2021-08-06)</p>
<p>&copy; 2021 <a class="link" href="https://verygoodsecurity.com" target="_blank" rel="external">Very Good Security</a>. All rights reserved. (Last updated: 2021-10-01)</p>
<p>Generated by <a class="link" href="https://github.com/realm/jazzy" target="_blank" rel="external">jazzy ♪♫ v0.13.5</a>, a <a class="link" href="https://realm.io" target="_blank" rel="external">Realm</a> project.</p>
</section>
</body>
Expand Down
2 changes: 1 addition & 1 deletion docs/Classes/SSNState.html
Original file line number Diff line number Diff line change
Expand Up @@ -359,7 +359,7 @@ <h4>Declaration</h4>
</article>
</div>
<section class="footer">
<p>&copy; 2021 <a class="link" href="https://verygoodsecurity.com" target="_blank" rel="external">Very Good Security</a>. All rights reserved. (Last updated: 2021-08-06)</p>
<p>&copy; 2021 <a class="link" href="https://verygoodsecurity.com" target="_blank" rel="external">Very Good Security</a>. All rights reserved. (Last updated: 2021-10-01)</p>
<p>Generated by <a class="link" href="https://github.com/realm/jazzy" target="_blank" rel="external">jazzy ♪♫ v0.13.5</a>, a <a class="link" href="https://realm.io" target="_blank" rel="external">Realm</a> project.</p>
</section>
</body>
Expand Down
2 changes: 1 addition & 1 deletion docs/Classes/State.html
Original file line number Diff line number Diff line change
Expand Up @@ -569,7 +569,7 @@ <h4>Declaration</h4>
</article>
</div>
<section class="footer">
<p>&copy; 2021 <a class="link" href="https://verygoodsecurity.com" target="_blank" rel="external">Very Good Security</a>. All rights reserved. (Last updated: 2021-08-06)</p>
<p>&copy; 2021 <a class="link" href="https://verygoodsecurity.com" target="_blank" rel="external">Very Good Security</a>. All rights reserved. (Last updated: 2021-10-01)</p>
<p>Generated by <a class="link" href="https://github.com/realm/jazzy" target="_blank" rel="external">jazzy ♪♫ v0.13.5</a>, a <a class="link" href="https://realm.io" target="_blank" rel="external">Realm</a> project.</p>
</section>
</body>
Expand Down
2 changes: 1 addition & 1 deletion docs/Classes/VGSCVCTextField.html
Original file line number Diff line number Diff line change
Expand Up @@ -455,7 +455,7 @@ <h4>Declaration</h4>
</article>
</div>
<section class="footer">
<p>&copy; 2021 <a class="link" href="https://verygoodsecurity.com" target="_blank" rel="external">Very Good Security</a>. All rights reserved. (Last updated: 2021-08-06)</p>
<p>&copy; 2021 <a class="link" href="https://verygoodsecurity.com" target="_blank" rel="external">Very Good Security</a>. All rights reserved. (Last updated: 2021-10-01)</p>
<p>Generated by <a class="link" href="https://github.com/realm/jazzy" target="_blank" rel="external">jazzy ♪♫ v0.13.5</a>, a <a class="link" href="https://realm.io" target="_blank" rel="external">Realm</a> project.</p>
</section>
</body>
Expand Down
2 changes: 1 addition & 1 deletion docs/Classes/VGSCVCTextField/CVCIconLocation.html
Original file line number Diff line number Diff line change
Expand Up @@ -359,7 +359,7 @@ <h4>Declaration</h4>
</article>
</div>
<section class="footer">
<p>&copy; 2021 <a class="link" href="https://verygoodsecurity.com" target="_blank" rel="external">Very Good Security</a>. All rights reserved. (Last updated: 2021-08-06)</p>
<p>&copy; 2021 <a class="link" href="https://verygoodsecurity.com" target="_blank" rel="external">Very Good Security</a>. All rights reserved. (Last updated: 2021-10-01)</p>
<p>Generated by <a class="link" href="https://github.com/realm/jazzy" target="_blank" rel="external">jazzy ♪♫ v0.13.5</a>, a <a class="link" href="https://realm.io" target="_blank" rel="external">Realm</a> project.</p>
</section>
</body>
Expand Down
2 changes: 1 addition & 1 deletion docs/Classes/VGSCardTextField.html
Original file line number Diff line number Diff line change
Expand Up @@ -455,7 +455,7 @@ <h4>Declaration</h4>
</article>
</div>
<section class="footer">
<p>&copy; 2021 <a class="link" href="https://verygoodsecurity.com" target="_blank" rel="external">Very Good Security</a>. All rights reserved. (Last updated: 2021-08-06)</p>
<p>&copy; 2021 <a class="link" href="https://verygoodsecurity.com" target="_blank" rel="external">Very Good Security</a>. All rights reserved. (Last updated: 2021-10-01)</p>
<p>Generated by <a class="link" href="https://github.com/realm/jazzy" target="_blank" rel="external">jazzy ♪♫ v0.13.5</a>, a <a class="link" href="https://realm.io" target="_blank" rel="external">Realm</a> project.</p>
</section>
</body>
Expand Down
2 changes: 1 addition & 1 deletion docs/Classes/VGSCardTextField/CardIconLocation.html
Original file line number Diff line number Diff line change
Expand Up @@ -359,7 +359,7 @@ <h4>Declaration</h4>
</article>
</div>
<section class="footer">
<p>&copy; 2021 <a class="link" href="https://verygoodsecurity.com" target="_blank" rel="external">Very Good Security</a>. All rights reserved. (Last updated: 2021-08-06)</p>
<p>&copy; 2021 <a class="link" href="https://verygoodsecurity.com" target="_blank" rel="external">Very Good Security</a>. All rights reserved. (Last updated: 2021-10-01)</p>
<p>Generated by <a class="link" href="https://github.com/realm/jazzy" target="_blank" rel="external">jazzy ♪♫ v0.13.5</a>, a <a class="link" href="https://realm.io" target="_blank" rel="external">Realm</a> project.</p>
</section>
</body>
Expand Down
2 changes: 1 addition & 1 deletion docs/Classes/VGSCollect.html
Original file line number Diff line number Diff line change
Expand Up @@ -1068,7 +1068,7 @@ <h4>Parameters</h4>
</article>
</div>
<section class="footer">
<p>&copy; 2021 <a class="link" href="https://verygoodsecurity.com" target="_blank" rel="external">Very Good Security</a>. All rights reserved. (Last updated: 2021-08-06)</p>
<p>&copy; 2021 <a class="link" href="https://verygoodsecurity.com" target="_blank" rel="external">Very Good Security</a>. All rights reserved. (Last updated: 2021-10-01)</p>
<p>Generated by <a class="link" href="https://github.com/realm/jazzy" target="_blank" rel="external">jazzy ♪♫ v0.13.5</a>, a <a class="link" href="https://realm.io" target="_blank" rel="external">Realm</a> project.</p>
</section>
</body>
Expand Down
2 changes: 1 addition & 1 deletion docs/Classes/VGSCollectLogger.html
Original file line number Diff line number Diff line change
Expand Up @@ -412,7 +412,7 @@ <h4>Declaration</h4>
</article>
</div>
<section class="footer">
<p>&copy; 2021 <a class="link" href="https://verygoodsecurity.com" target="_blank" rel="external">Very Good Security</a>. All rights reserved. (Last updated: 2021-08-06)</p>
<p>&copy; 2021 <a class="link" href="https://verygoodsecurity.com" target="_blank" rel="external">Very Good Security</a>. All rights reserved. (Last updated: 2021-10-01)</p>
<p>Generated by <a class="link" href="https://github.com/realm/jazzy" target="_blank" rel="external">jazzy ♪♫ v0.13.5</a>, a <a class="link" href="https://realm.io" target="_blank" rel="external">Realm</a> project.</p>
</section>
</body>
Expand Down
2 changes: 1 addition & 1 deletion docs/Classes/VGSConfiguration.html
Original file line number Diff line number Diff line change
Expand Up @@ -712,7 +712,7 @@ <h4>Parameters</h4>
</article>
</div>
<section class="footer">
<p>&copy; 2021 <a class="link" href="https://verygoodsecurity.com" target="_blank" rel="external">Very Good Security</a>. All rights reserved. (Last updated: 2021-08-06)</p>
<p>&copy; 2021 <a class="link" href="https://verygoodsecurity.com" target="_blank" rel="external">Very Good Security</a>. All rights reserved. (Last updated: 2021-10-01)</p>
<p>Generated by <a class="link" href="https://github.com/realm/jazzy" target="_blank" rel="external">jazzy ♪♫ v0.13.5</a>, a <a class="link" href="https://realm.io" target="_blank" rel="external">Realm</a> project.</p>
</section>
</body>
Expand Down
2 changes: 1 addition & 1 deletion docs/Classes/VGSError.html
Original file line number Diff line number Diff line change
Expand Up @@ -389,7 +389,7 @@ <h4>Declaration</h4>
</article>
</div>
<section class="footer">
<p>&copy; 2021 <a class="link" href="https://verygoodsecurity.com" target="_blank" rel="external">Very Good Security</a>. All rights reserved. (Last updated: 2021-08-06)</p>
<p>&copy; 2021 <a class="link" href="https://verygoodsecurity.com" target="_blank" rel="external">Very Good Security</a>. All rights reserved. (Last updated: 2021-10-01)</p>
<p>Generated by <a class="link" href="https://github.com/realm/jazzy" target="_blank" rel="external">jazzy ♪♫ v0.13.5</a>, a <a class="link" href="https://realm.io" target="_blank" rel="external">Realm</a> project.</p>
</section>
</body>
Expand Down
2 changes: 1 addition & 1 deletion docs/Classes/VGSExpDateConfiguration.html
Original file line number Diff line number Diff line change
Expand Up @@ -449,7 +449,7 @@ <h4>Declaration</h4>
</article>
</div>
<section class="footer">
<p>&copy; 2021 <a class="link" href="https://verygoodsecurity.com" target="_blank" rel="external">Very Good Security</a>. All rights reserved. (Last updated: 2021-08-06)</p>
<p>&copy; 2021 <a class="link" href="https://verygoodsecurity.com" target="_blank" rel="external">Very Good Security</a>. All rights reserved. (Last updated: 2021-10-01)</p>
<p>Generated by <a class="link" href="https://github.com/realm/jazzy" target="_blank" rel="external">jazzy ♪♫ v0.13.5</a>, a <a class="link" href="https://realm.io" target="_blank" rel="external">Realm</a> project.</p>
</section>
</body>
Expand Down
Loading

0 comments on commit 4903fa6

Please sign in to comment.