Upload a new build to a “Ready for sale” version

app-store-connect

I have an app in the Appstore that is 3.4 build 0.0.2 (Ready for Sale), but I found a small bug that I need too push out. It seems silly to update the version to 3.5 just for this small bug that we missed in testing.

(Update: I tried using @jksoegaard suggestion, but I get the below error:)
enter image description here

Is there anyway that I can remove the 3.4 from sale and simply create a 3.4 build 0.0.3 and submit this for review?

Best Answer

Submit a new build with 3.4.1 as the short version value in the Info.plist file.

The value for CFBundleShortVersionString must change between releases. The three digit semantic versioning format is described in Apple's developer documentation and is widely understood beyond Apple's platforms:

Given a version number MAJOR.MINOR.PATCH, increment the:

  • MAJOR version when you make incompatible API changes,
  • MINOR version when you add functionality in a backwards compatible manner, and
  • PATCH version when you make backwards compatible bug fixes.

Additional labels for pre-release and build metadata are available as extensions to the MAJOR.MINOR.PATCH format.