Skip to content

Commit f731020

Browse files
committed
CORE-1608 Switch to semantic versioning to improve compatibility
1 parent d4e57f9 commit f731020

File tree

5 files changed

+13
-13
lines changed

5 files changed

+13
-13
lines changed

Branch-SDK/BNCConfig.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,4 @@
1111
NSString * const BNC_API_BASE_URL = @"https://api2.branch.io";
1212
NSString * const BNC_API_VERSION = @"v1";
1313
NSString * const BNC_LINK_URL = @"https://bnc.lt";
14-
NSString * const BNC_SDK_VERSION = @"0.37.0";
14+
NSString * const BNC_SDK_VERSION = @"1.38.0";

Branch-TestBed/Framework-Info.plist

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,11 @@
1717
<key>CFBundlePackageType</key>
1818
<string>FMWK</string>
1919
<key>CFBundleShortVersionString</key>
20-
<string>0.37.0</string>
20+
<string>1.38.0</string>
2121
<key>CFBundleSignature</key>
2222
<string>????</string>
2323
<key>CFBundleVersion</key>
24-
<string>0.37.0</string>
24+
<string>1.38.0</string>
2525
<key>LSRequiresIPhoneOS</key>
2626
<true/>
2727
<key>NSHumanReadableCopyright</key>

Branch.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = "Branch"
3-
s.version = "0.37.0"
3+
s.version = "1.38.0"
44
s.summary = "Create an HTTP URL for any piece of content in your app"
55
s.description = <<-DESC
66
- Want the highest possible conversions on your sharing feature?

carthage-files/BranchSDK.xcodeproj/project.pbxproj

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1589,7 +1589,7 @@
15891589
"@executable_path/Frameworks",
15901590
"@loader_path/Frameworks",
15911591
);
1592-
MARKETING_VERSION = 0.37.0;
1592+
MARKETING_VERSION = 1.38.0;
15931593
MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE;
15941594
MTL_FAST_MATH = YES;
15951595
ONLY_ACTIVE_ARCH = YES;
@@ -1629,7 +1629,7 @@
16291629
"@executable_path/Frameworks",
16301630
"@loader_path/Frameworks",
16311631
);
1632-
MARKETING_VERSION = 0.37.0;
1632+
MARKETING_VERSION = 1.38.0;
16331633
MTL_FAST_MATH = YES;
16341634
ONLY_ACTIVE_ARCH = NO;
16351635
PRODUCT_BUNDLE_IDENTIFIER = io.branch.Branch;
@@ -1665,7 +1665,7 @@
16651665
);
16661666
MACH_O_TYPE = staticlib;
16671667
MACOSX_DEPLOYMENT_TARGET = 10.15;
1668-
MARKETING_VERSION = 0.37.0;
1668+
MARKETING_VERSION = 1.38.0;
16691669
ONLY_ACTIVE_ARCH = YES;
16701670
OTHER_LDFLAGS = "-ObjC";
16711671
PRODUCT_BUNDLE_IDENTIFIER = io.branch.Branch;
@@ -1698,7 +1698,7 @@
16981698
);
16991699
MACH_O_TYPE = staticlib;
17001700
MACOSX_DEPLOYMENT_TARGET = 10.15;
1701-
MARKETING_VERSION = 0.37.0;
1701+
MARKETING_VERSION = 1.38.0;
17021702
ONLY_ACTIVE_ARCH = NO;
17031703
OTHER_LDFLAGS = "-ObjC";
17041704
PRODUCT_BUNDLE_IDENTIFIER = io.branch.Branch;
@@ -1857,7 +1857,7 @@
18571857
"@loader_path/Frameworks",
18581858
);
18591859
MACOSX_DEPLOYMENT_TARGET = 10.15;
1860-
MARKETING_VERSION = 0.37.0;
1860+
MARKETING_VERSION = 1.38.0;
18611861
ONLY_ACTIVE_ARCH = YES;
18621862
OTHER_LDFLAGS = "-ObjC";
18631863
PRODUCT_BUNDLE_IDENTIFIER = io.branch.Branch;
@@ -1888,7 +1888,7 @@
18881888
"@loader_path/Frameworks",
18891889
);
18901890
MACOSX_DEPLOYMENT_TARGET = 10.15;
1891-
MARKETING_VERSION = 0.37.0;
1891+
MARKETING_VERSION = 1.38.0;
18921892
ONLY_ACTIVE_ARCH = NO;
18931893
OTHER_LDFLAGS = "-ObjC";
18941894
PRODUCT_BUNDLE_IDENTIFIER = io.branch.Branch;

scripts/version.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ function usage() {
66
cat <<USAGE
77
version - Print or increment a version number.
88
9-
Usage: version [ -hiMmp ]
9+
Usage: version.sh [ -hiMmp ]
1010
11-
With no options given, \`version\` simply prints the current version number.
11+
With no options given, \`version.sh\` simply prints the current version number.
1212
1313
Version numbers are: Major.Minor.Patch
1414
@@ -31,7 +31,7 @@ Options:
3131
USAGE
3232
}
3333

34-
version=0.37.0
34+
version=1.38.0
3535

3636
if (( $# == 0 )); then
3737
echo $version

0 commit comments

Comments
 (0)