You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Also includes a basic versioning scheme that will need to be revisited
before shipping the next minor version.
# Versioning Scheme
The `build.gradle.kts` file includes the following logic for generating
the version identifier:
`version = "$baseVersion.$commitCount-preview+g$gitHash$safeBranchName"`
* `baseVersion` is set to `BASE_VERSION` env var, with `0.5` as a
fallback
* `commitCount` is the number of commits, retrieved via `git rev-list
--count HEAD`
* `gitHash` is the short git hash, retrieved via ` git rev-parse --short
HEAD`
* `safeBranchName` is the branch name, with `/` replaced with `-`.
Omitted if branch name is `main` or `HEAD`
An example version identifier from my local machine is
`0.5.302-preview+ga068c39.devhawk-version`.
---------
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
0 commit comments