a488c8d2a3
Classic mistake: you don't bump the version. We need https://github.com/ooni/probe-cli/issues/43.
11 lines
226 B
Go
11 lines
226 B
Go
// Package version contains version information
|
|
package version
|
|
|
|
const (
|
|
// Version is the software version
|
|
Version = "3.0.0-beta.4"
|
|
|
|
// UserAgent is the OONI user-agent header
|
|
UserAgent = "ooniprobe-desktop/" + Version
|
|
)
|