go-github-selfupdate/selfupdate/release.go

25 lines
635 B
Go
Raw Normal View History

package selfupdate
import (
"github.com/blang/semver"
"time"
)
// Release represents a release asset for current OS and arch.
type Release struct {
// Version is the version of the release
Version semver.Version
// AssetURL is a URL to the uploaded file for the release
AssetURL string
// AssetSize represents the size of asset in bytes
AssetByteSize int
// URL is a URL to release page for browsing
URL string
// ReleaseNotes is a release notes of the release
ReleaseNotes string
// Name represents a name of the release
Name string
// PublishedAt is the time when the release was published
PublishedAt *time.Time
}