You've already forked woodpecker
							
							
				mirror of
				https://github.com/woodpecker-ci/woodpecker.git
				synced 2025-10-30 23:27:39 +02:00 
			
		
		
		
	
		
			
				
	
	
		
			26 lines
		
	
	
		
			721 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			26 lines
		
	
	
		
			721 B
		
	
	
	
		
			Go
		
	
	
	
	
	
| package version
 | |
| 
 | |
| import "github.com/coreos/go-semver/semver"
 | |
| 
 | |
| var (
 | |
| 	// VersionMajor is for an API incompatible changes
 | |
| 	VersionMajor int64
 | |
| 	// VersionMinor is for functionality in a backwards-compatible manner
 | |
| 	VersionMinor int64 = 7
 | |
| 	// VersionPatch is for backwards-compatible bug fixes
 | |
| 	VersionPatch int64 = 2
 | |
| 	// VersionPre indicates prerelease
 | |
| 	VersionPre string
 | |
| 	// VersionDev indicates development branch. Releases will be empty string.
 | |
| 	VersionDev string
 | |
| )
 | |
| 
 | |
| // Version is the specification version that the package types support.
 | |
| var Version = semver.Version{
 | |
| 	Major:      VersionMajor,
 | |
| 	Minor:      VersionMinor,
 | |
| 	Patch:      VersionPatch,
 | |
| 	PreRelease: semver.PreRelease(VersionPre),
 | |
| 	Metadata:   VersionDev,
 | |
| }
 |