version: add beta tag

This adds the "beta" tag and adds a dash before "rc" or "beta".
This commit is contained in:
Julian Oes
2019-08-23 08:27:20 +02:00
committed by Beat Küng
parent c3529baa5b
commit 3fa3cbd28a

View File

@@ -1,7 +1,6 @@
/**************************************************************************** /****************************************************************************
* *
* Copyright (c) 2013 PX4 Development Team. All rights reserved. * Copyright (c) 2013-2019 PX4 Development Team. All rights reserved.
* Author: Anton Babushkin <anton.babushkin@me.com>
* *
* Redistribution and use in source and binary forms, with or without * Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions * modification, are permitted provided that the following conditions
@@ -90,8 +89,9 @@ const char *px4_build_uri(void);
* Convert a version tag string to a number * Convert a version tag string to a number
* @param tag version tag in one of the following forms: * @param tag version tag in one of the following forms:
* - vendor: v1.4.0-0.2.0 * - vendor: v1.4.0-0.2.0
* - dev: v1.4.0rc3-7-g7e282f57 * - dev: v1.4.0-rc3-7-g7e282f57
* - rc: v1.4.0rc4 * - rc: v1.4.0-rc4
* - beta: v1.4.0-beta1
* - release: v1.4.0 * - release: v1.4.0
* - linux: 7.9.3 * - linux: 7.9.3
* @return version in the form 0xAABBCCTT (AA: Major, BB: Minor, CC: Patch, TT Type @see FIRMWARE_TYPE) * @return version in the form 0xAABBCCTT (AA: Major, BB: Minor, CC: Patch, TT Type @see FIRMWARE_TYPE)
@@ -108,8 +108,9 @@ __EXPORT uint32_t px4_firmware_version(void);
* Convert a version tag string to a vendor version number * Convert a version tag string to a vendor version number
* @param tag version tag in one of the following forms: * @param tag version tag in one of the following forms:
* - vendor: v1.4.0-0.2.0 * - vendor: v1.4.0-0.2.0
* - dev: v1.4.0rc3-7-g7e282f57 * - dev: v1.4.0-rc3-7-g7e282f57
* - rc: v1.4.0rc4 * - rc: v1.4.0-rc4
* - beta: v1.4.0-beta1
* - release: v1.4.0 * - release: v1.4.0
* - linux: 7.9.3 * - linux: 7.9.3
* @return version in the form 0xAABBCCTT (AA: Major, BB: Minor, CC: Patch, TT Type @see FIRMWARE_TYPE) * @return version in the form 0xAABBCCTT (AA: Major, BB: Minor, CC: Patch, TT Type @see FIRMWARE_TYPE)