This repository was archived by the owner on Feb 13, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed
scripts/devcenter-release Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ Pod::Spec.new do |s|
16
16
#
17
17
18
18
s . name = "Kinvey"
19
- s . version = "3.10.0 "
19
+ s . version = "3.10.1 "
20
20
s . summary = "Kinvey iOS SDK"
21
21
22
22
# This description is used to generate tags and improve search results.
Original file line number Diff line number Diff line change 15
15
<key >CFBundlePackageType </key >
16
16
<string >FMWK </string >
17
17
<key >CFBundleShortVersionString </key >
18
- <string >3.10.0 </string >
18
+ <string >3.10.1 </string >
19
19
<key >CFBundleSignature </key >
20
20
<string >???? </string >
21
21
<key >CFBundleVersion </key >
Original file line number Diff line number Diff line change @@ -47,7 +47,7 @@ extension String {
47
47
let version = arguments [ 1 ]
48
48
let downloadURLString = " http://download.kinvey.com/iOS/Kinvey- \( version) .zip "
49
49
let versionTuple : ( major: Int , minor: Int , patch: Int ) = {
50
- let regex = try ! NSRegularExpression ( pattern: " ( \\ d) \\ .( \\ d) \\ .( \\ d) " )
50
+ let regex = try ! NSRegularExpression ( pattern: " ( \\ d+ ) \\ .( \\ d+ ) \\ .( \\ d+ ) " )
51
51
let match = regex. firstMatch ( in: version, range: NSRange ( location: 0 , length: version. characters. count) ) !
52
52
let major = Int ( version [ match. range ( at: 1 ) ] ) !
53
53
let minor = Int ( version [ match. range ( at: 2 ) ] ) !
You can’t perform that action at this time.
0 commit comments