app.shortVersion deprecated

Hi,
for my apps I use Sam’s AppStoreReceipt (thanks Sam!).

Running Analyze Project (Xojo 2021 2.1) I just noticed that in the following lines instances of “app.shortVersion” are highlighted as deprecated.
Should I replace app.shortVersion with app.Version?
Thanks,

rvalue.append “Version receipt:”"" + bundleversion + _
“”", bundle:""" + app.shortVersion + _
“”" match:" + if( app.shortVersion = bundleVersion, “YES”, “NO” )

I’m using “Application.Minorversion” for that …

That is was what I first thought. If only I knew what “bundleversion” is…
Thank you for answering.