Skip to content

Commit

Permalink
CORE-1608 Switch to semantic versioning to improve compatibility
Browse files Browse the repository at this point in the history
  • Loading branch information
echo-branch committed Feb 9, 2021
1 parent d4e57f9 commit f731020
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion Branch-SDK/BNCConfig.m
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@
NSString * const BNC_API_BASE_URL = @"https://api2.branch.io";
NSString * const BNC_API_VERSION = @"v1";
NSString * const BNC_LINK_URL = @"https://bnc.lt";
NSString * const BNC_SDK_VERSION = @"0.37.0";
NSString * const BNC_SDK_VERSION = @"1.38.0";
4 changes: 2 additions & 2 deletions Branch-TestBed/Framework-Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,11 @@
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleShortVersionString</key>
<string>0.37.0</string>
<string>1.38.0</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
<string>0.37.0</string>
<string>1.38.0</string>
<key>LSRequiresIPhoneOS</key>
<true/>
<key>NSHumanReadableCopyright</key>
Expand Down
2 changes: 1 addition & 1 deletion Branch.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = "Branch"
s.version = "0.37.0"
s.version = "1.38.0"
s.summary = "Create an HTTP URL for any piece of content in your app"
s.description = <<-DESC
- Want the highest possible conversions on your sharing feature?
Expand Down
12 changes: 6 additions & 6 deletions carthage-files/BranchSDK.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -1589,7 +1589,7 @@
"@executable_path/Frameworks",
"@loader_path/Frameworks",
);
MARKETING_VERSION = 0.37.0;
MARKETING_VERSION = 1.38.0;
MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE;
MTL_FAST_MATH = YES;
ONLY_ACTIVE_ARCH = YES;
Expand Down Expand Up @@ -1629,7 +1629,7 @@
"@executable_path/Frameworks",
"@loader_path/Frameworks",
);
MARKETING_VERSION = 0.37.0;
MARKETING_VERSION = 1.38.0;
MTL_FAST_MATH = YES;
ONLY_ACTIVE_ARCH = NO;
PRODUCT_BUNDLE_IDENTIFIER = io.branch.Branch;
Expand Down Expand Up @@ -1665,7 +1665,7 @@
);
MACH_O_TYPE = staticlib;
MACOSX_DEPLOYMENT_TARGET = 10.15;
MARKETING_VERSION = 0.37.0;
MARKETING_VERSION = 1.38.0;
ONLY_ACTIVE_ARCH = YES;
OTHER_LDFLAGS = "-ObjC";
PRODUCT_BUNDLE_IDENTIFIER = io.branch.Branch;
Expand Down Expand Up @@ -1698,7 +1698,7 @@
);
MACH_O_TYPE = staticlib;
MACOSX_DEPLOYMENT_TARGET = 10.15;
MARKETING_VERSION = 0.37.0;
MARKETING_VERSION = 1.38.0;
ONLY_ACTIVE_ARCH = NO;
OTHER_LDFLAGS = "-ObjC";
PRODUCT_BUNDLE_IDENTIFIER = io.branch.Branch;
Expand Down Expand Up @@ -1857,7 +1857,7 @@
"@loader_path/Frameworks",
);
MACOSX_DEPLOYMENT_TARGET = 10.15;
MARKETING_VERSION = 0.37.0;
MARKETING_VERSION = 1.38.0;
ONLY_ACTIVE_ARCH = YES;
OTHER_LDFLAGS = "-ObjC";
PRODUCT_BUNDLE_IDENTIFIER = io.branch.Branch;
Expand Down Expand Up @@ -1888,7 +1888,7 @@
"@loader_path/Frameworks",
);
MACOSX_DEPLOYMENT_TARGET = 10.15;
MARKETING_VERSION = 0.37.0;
MARKETING_VERSION = 1.38.0;
ONLY_ACTIVE_ARCH = NO;
OTHER_LDFLAGS = "-ObjC";
PRODUCT_BUNDLE_IDENTIFIER = io.branch.Branch;
Expand Down
6 changes: 3 additions & 3 deletions scripts/version.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ function usage() {
cat <<USAGE
version - Print or increment a version number.
Usage: version [ -hiMmp ]
Usage: version.sh [ -hiMmp ]
With no options given, \`version\` simply prints the current version number.
With no options given, \`version.sh\` simply prints the current version number.
Version numbers are: Major.Minor.Patch
Expand All @@ -31,7 +31,7 @@ Options:
USAGE
}

version=0.37.0
version=1.38.0

if (( $# == 0 )); then
echo $version
Expand Down

0 comments on commit f731020

Please sign in to comment.