SemVer in Project Settings#2
SemVer in Project Settings#2Hikaru11747 wants to merge 1 commit intojeffcampbellmakesgames:masterfrom
Conversation
Updates the bundleVersion on OnValidate().
|
This looks interesting, can you tell me more about you're using this in context? I could see a build processor increment or manipulate this as a part of a build, but it could also do that directly on the |
|
Hi there @jeffcampbellmakesgames, Yes I see it as a way to access and maintain versioning right in the project settings, but i've also observed it resets the version on restart it's cause of the how semver class is initialised in the settings, and yeah what you've suggested can solve this issue where it can read back the bundle version and keep it updated properly. |
|
I hadn't really thought about doing incremental builds before, but that’s actually a nice idea. My only concern is around failed builds. Would we still bump the version even if the build fails? I guess it might also depend on the type of build. For example, if it's a prerelease build we might just increment the prerelease number instead of the patch version. |
Added a Project Settings page for SemVer to directly increment/maintain versioning.
Updates the bundleVersion on OnValidate() aswell.