github.com/niedbalski/juju@v0.0.0-20190215020005-8ff100488e47/juju/version/version.go (about) 1 // Copyright 2018 Canonical Ltd. 2 // Licensed under the AGPLv3, see LICENCE file for details. 3 4 // Package version contains versioning information about packages that juju supports. 5 package version 6 7 // SupportedLTS returns the latest LTS that Juju supports and is compatible with. 8 // For example, Juju 2.3.x series cannot be run on "bionic" 9 // as mongo version that it depends on (3.2 and less) is not packaged for bionic. 10 func SupportedLTS() string { 11 return "bionic" 12 }