David K. Bainbridge | 215e024 | 2017-09-05 23:18:24 -0700 | [diff] [blame] | 1 | // Copyright 2016 The Linux Foundation |
| 2 | // |
| 3 | // Licensed under the Apache License, Version 2.0 (the "License"); |
| 4 | // you may not use this file except in compliance with the License. |
| 5 | // You may obtain a copy of the License at |
| 6 | // |
| 7 | // http://www.apache.org/licenses/LICENSE-2.0 |
| 8 | // |
| 9 | // Unless required by applicable law or agreed to in writing, software |
| 10 | // distributed under the License is distributed on an "AS IS" BASIS, |
| 11 | // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 12 | // See the License for the specific language governing permissions and |
| 13 | // limitations under the License. |
| 14 | |
| 15 | package specs |
| 16 | |
| 17 | import "fmt" |
| 18 | |
| 19 | const ( |
| 20 | // VersionMajor is for an API incompatible changes |
| 21 | VersionMajor = 1 |
| 22 | // VersionMinor is for functionality in a backwards-compatible manner |
| 23 | VersionMinor = 0 |
| 24 | // VersionPatch is for backwards-compatible bug fixes |
| 25 | VersionPatch = 0 |
| 26 | |
| 27 | // VersionDev indicates development branch. Releases will be empty string. |
| 28 | VersionDev = "-rc6-dev" |
| 29 | ) |
| 30 | |
| 31 | // Version is the specification version that the package types support. |
| 32 | var Version = fmt.Sprintf("%d.%d.%d%s", VersionMajor, VersionMinor, VersionPatch, VersionDev) |