Skip to content

Instantly share code, notes, and snippets.

View scottdensmore's full-sized avatar

Scott Densmore scottdensmore

View GitHub Profile
@scottdensmore
scottdensmore / update-version.sh
Created May 13, 2017 04:49 — forked from jellybeansoup/update-version.sh
Script for Incrementing Version Numbers
#!/bin/bash
# Link: <https://gist.github.com/jellybeansoup/db7b24fb4c7ed44030f4>
#
# A command-line script for incrementing build numbers for all known targets in an Xcode project.
#
# This script has two main goals: firstly, to ensure that all the targets in a project have the
# same CFBundleVersion and CFBundleShortVersionString values. This is because mismatched values
# can cause a warning when submitting to the App Store. Secondly, to ensure that the build number
# is incremented appropriately when git has changes.
#