|
| 1 | +# |
| 2 | +# GSC-18128-1, "Core Flight Executive Version 6.7" |
| 3 | +# |
| 4 | +# Copyright (c) 2006-2019 United States Government as represented by |
| 5 | +# the Administrator of the National Aeronautics and Space Administration. |
| 6 | +# All Rights Reserved. |
| 7 | +# |
| 8 | +# Licensed under the Apache License, Version 2.0 (the "License"); |
| 9 | +# you may not use this file except in compliance with the License. |
| 10 | +# You may obtain a copy of the License at |
| 11 | +# |
| 12 | +# http://www.apache.org/licenses/LICENSE-2.0 |
| 13 | +# |
| 14 | +# Unless required by applicable law or agreed to in writing, software |
| 15 | +# distributed under the License is distributed on an "AS IS" BASIS, |
| 16 | +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 17 | +# See the License for the specific language governing permissions and |
| 18 | +# limitations under the License. |
| 19 | +# |
| 20 | +# |
| 21 | + |
| 22 | +# Development Build Macro Definitions |
| 23 | +_cFS_GrndSys_build_number = 73 |
| 24 | +_cFS_GrndSys_build_baseline = "v2.1.0" |
| 25 | + |
| 26 | +# Version Number Definitions |
| 27 | +# ONLY APPLY for OFFICIAL release builds |
| 28 | +_cFS_GrndSys_MAJOR = 2 |
| 29 | +_cFS_GrndSys_MINOR = 1 |
| 30 | +_cFS_GrndSys_REVISION = 0 |
| 31 | +_cFS_GrndSys_MISSIONREV = 0 |
| 32 | + |
| 33 | +# Development Build format for __version__ |
| 34 | +# Baseline git tag + Number of commits since baseline |
| 35 | +__version__ = "+dev".join((_cFS_GrndSys_build_baseline,str(_cFS_GrndSys_build_number))) |
| 36 | + |
| 37 | +# Development Build format for __version_string__ |
| 38 | +_version_string = " cFS-GroundSystem Development Build\n " + __version__ + " (Codename: Bootes)" |
| 39 | + |
| 40 | +# Use the following templates for Official Releases ONLY |
| 41 | + |
| 42 | + # Official Release format for __version__ |
| 43 | + # __version__ = ".".join(map(str,(_cFS_GrndSys_MAJOR, _cFS_GrndSys_MINOR, _cFS_GrndSys_REVISION, _cFS_GrndSys_MISSIONREV))) |
| 44 | + |
| 45 | + # Official Release format for _version_string |
| 46 | + # _version_string = " cFS-GroundSystem v" + __version__ |
| 47 | + |
| 48 | +# END TEMPLATES |
| 49 | + |
0 commit comments