wrong build number shown in AppStore connect

My previous release version CFBundleVersion is 301.3.12010. CFBundleShortVersionString is 1.3.12.

Now I need to provide an update and the CFBundleVersionis is 301.3.13061 AND CFBundleShortVersionString is 1.3.13.

If I upload the build using Xcode organiser, it successfully uploads and validates. But the Build number shown is 1.3.13(302). Earlier it was showing 1.3.12 (301.3.12010).

I checked my info.plist, nowhere I have defined 302. I don't know why AppStoreConnect still shows 302.

Could someone help to solve this issue.

Thank you.

Deepa

The query was already posted and there was a solution for it: https://developer.apple.com/forums/thread/690481

Adding a little to Deepa Pai’s correct answer, your bundle version got “incremented” to 302 because the new auto-managed version logic seems to consider only the first part of a dotted version string. So it considered both your old 301.3.12010 and your new 301.3.13061 to be equivalent to simply 301, therefore duplicate, so it incremented to produce 302.

wrong build number shown in AppStore connect
 
 
Q