Documentation ¶
Overview ¶
Package version provides a single location to house the version information for dcrd and other utilities provided in the same repository.
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var ( // Version is the application version per the semantic versioning 2.0.0 spec // (https://semver.org/). // // It is defined as a variable so it can be overridden during the build // process with: // '-ldflags "-X main.Version=fullsemver"' // if needed. // // It MUST be a full semantic version per the semantic versioning spec or // the app will panic at runtime. Of particular note is the pre-release // and build metadata portions MUST only contain characters from // semanticAlphabet. Version = "1.4.0-pre" // These fields are the individual semantic version components that define // the application version. Major uint32 Minor uint32 Patch uint32 PreRelease string BuildMetadata string )
These variables define the application version and follow the semantic versioning 2.0.0 spec (https://semver.org/).
Functions ¶
This section is empty.
Types ¶
This section is empty.
Click to show internal directories.
Click to hide internal directories.