diff --git a/Instabug.bundle/Instabug_dsym_upload.sh b/Instabug.bundle/Instabug_dsym_upload.sh index 8a9759f2..793190a3 100755 --- a/Instabug.bundle/Instabug_dsym_upload.sh +++ b/Instabug.bundle/Instabug_dsym_upload.sh @@ -69,10 +69,10 @@ fi DSYM_PATH_ZIP="${TEMP_DIRECTORY}/$DWARF_DSYM_FILE_NAME.zip" if [ ! -d "$DSYM_PATH" ]; then echo "Instabug: err: dSYM not found: ${DSYM_PATH}" - exit 1 + exit 0 fi echo "Instabug: Compressing dSYM file..." -(/usr/bin/zip --recurse-paths --quiet "${DSYM_PATH_ZIP}" "${DSYM_PATH}") || exit 1 +(/usr/bin/zip --recurse-paths --quiet "${DSYM_PATH_ZIP}" "${DSYM_PATH}") || exit 0 # Upload dSYM echo "Instabug: Uploading dSYM file..." @@ -82,7 +82,7 @@ if [ $STATUS -ne 200 ]; then echo "Instabug: err: dSYM archive not succesfully uploaded." echo "Instabug: deleting temporary dSYM archive..." /bin/rm -f "${DSYM_PATH_ZIP}" - exit 1 + exit 0 fi # Remove temp dSYM archive @@ -96,5 +96,5 @@ echo "${DSYM_UUIDs}" >> "${DSYM_UUIDs_PATH}" echo "Instabug: dSYM upload complete." if [ "$?" -ne 0 ]; then echo "Instabug: err: an error was encountered uploading dSYM" - exit 1 + exit 0 fi diff --git a/Instabug.framework/Versions/A/Headers/Instabug.h b/Instabug.framework/Versions/A/Headers/Instabug.h index 6c6b8eb4..9024d7ed 100644 --- a/Instabug.framework/Versions/A/Headers/Instabug.h +++ b/Instabug.framework/Versions/A/Headers/Instabug.h @@ -5,7 +5,7 @@ Copyright: (c) 2014 by Instabug, Inc., all rights reserved. - Version: 3.10 + Version: 3.11 */ //=========================================================================================================================================== diff --git a/Instabug.framework/Versions/A/Instabug b/Instabug.framework/Versions/A/Instabug index 0fcc01f3..217e6710 100644 Binary files a/Instabug.framework/Versions/A/Instabug and b/Instabug.framework/Versions/A/Instabug differ diff --git a/Instabug.podspec b/Instabug.podspec index ac7a15e2..7f77f19c 100644 --- a/Instabug.podspec +++ b/Instabug.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = "Instabug" - s.version = "3.10" + s.version = "3.11" s.summary = "Bug reporting for mobile apps. Learn more at http://instabug.com" s.homepage = "http://instabug.com" s.license = { @@ -23,7 +23,7 @@ Pod::Spec.new do |s| } s.author = { "Instabug" => "contactus@instabug.com" } s.platform = :ios, '5.0' - s.source = { :git => "https://github.com/Instabug/Instabug-iOS.git", :tag => "3.10" } + s.source = { :git => "https://github.com/Instabug/Instabug-iOS.git", :tag => "3.11" } s.source_files = 'Instabug.framework/Versions/A/Headers/*.{h}' s.resources = 'Instabug.bundle' s.preserve_paths = 'Instabug.framework/*', 'Instabug.bundle'