4a563ebe13
I'm pinning to ooni/probe-engine@72c12b0b81 because it generates more correct data and I think we're going to have most likely this probe-cli version in the stable desktop release.
11 lines
225 B
Go
11 lines
225 B
Go
// Package version contains version information
|
|
package version
|
|
|
|
const (
|
|
// Version is the software version
|
|
Version = "3.0.0-rc.13"
|
|
|
|
// UserAgent is the OONI user-agent header
|
|
UserAgent = "ooniprobe-desktop/" + Version
|
|
)
|