Skip to content

Commit

Permalink
v3.11
Browse files Browse the repository at this point in the history
  • Loading branch information
mzsoliman committed Oct 3, 2014
1 parent ca7cbf3 commit f2bf419
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions Instabug.bundle/Instabug_dsym_upload.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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..."
Expand All @@ -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
Expand All @@ -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
2 changes: 1 addition & 1 deletion Instabug.framework/Versions/A/Headers/Instabug.h
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
Copyright: (c) 2014 by Instabug, Inc., all rights reserved.
Version: 3.10
Version: 3.11
*/

//===========================================================================================================================================
Expand Down
Binary file modified Instabug.framework/Versions/A/Instabug
Binary file not shown.
4 changes: 2 additions & 2 deletions Instabug.podspec
Original file line number Diff line number Diff line change
@@ -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 = {
Expand All @@ -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'
Expand Down

0 comments on commit f2bf419

Please sign in to comment.