mirror of https://github.com/rusefi/openblt.git
Refs #845. Updated version numbers and Windows binaries in preparation for new release.
git-svn-id: https://svn.code.sf.net/p/openblt/code/trunk@704 5dc33758-31d5-4daf-9ae8-b24bf3d40d73
This commit is contained in:
parent
a9ca24fa0a
commit
fa4f1b63f2
|
@ -38,7 +38,7 @@ PROJECT_NAME = "BootCommander - Reference Manual"
|
||||||
# could be handy for archiving the generated documentation or if some version
|
# could be handy for archiving the generated documentation or if some version
|
||||||
# control system is used.
|
# control system is used.
|
||||||
|
|
||||||
PROJECT_NUMBER = 1.4.1
|
PROJECT_NUMBER = 1.4.2
|
||||||
|
|
||||||
# Using the PROJECT_BRIEF tag one can provide an optional one line description
|
# Using the PROJECT_BRIEF tag one can provide an optional one line description
|
||||||
# for a project that appears at the top of each page and should give viewer a
|
# for a project that appears at the top of each page and should give viewer a
|
||||||
|
|
|
@ -38,7 +38,7 @@ PROJECT_NAME = "OpenBLT Host Library - Reference Manual"
|
||||||
# could be handy for archiving the generated documentation or if some version
|
# could be handy for archiving the generated documentation or if some version
|
||||||
# control system is used.
|
# control system is used.
|
||||||
|
|
||||||
PROJECT_NUMBER = 1.3.2
|
PROJECT_NUMBER = 1.3.3
|
||||||
|
|
||||||
# Using the PROJECT_BRIEF tag one can provide an optional one line description
|
# Using the PROJECT_BRIEF tag one can provide an optional one line description
|
||||||
# for a project that appears at the top of each page and should give viewer a
|
# for a project that appears at the top of each page and should give viewer a
|
||||||
|
|
|
@ -38,7 +38,7 @@ PROJECT_NAME = "OpenBLT Bootloader - Reference Manual"
|
||||||
# could be handy for archiving the generated documentation or if some version
|
# could be handy for archiving the generated documentation or if some version
|
||||||
# control system is used.
|
# control system is used.
|
||||||
|
|
||||||
PROJECT_NUMBER = 1.7.0
|
PROJECT_NUMBER = 1.8.0
|
||||||
|
|
||||||
# Using the PROJECT_BRIEF tag one can provide an optional one line description
|
# Using the PROJECT_BRIEF tag one can provide an optional one line description
|
||||||
# for a project that appears at the top of each page and should give viewer a
|
# for a project that appears at the top of each page and should give viewer a
|
||||||
|
|
Binary file not shown.
Binary file not shown.
|
@ -472,7 +472,7 @@ int main(int argc, char const * const argv[])
|
||||||
static void DisplayProgramInfo(void)
|
static void DisplayProgramInfo(void)
|
||||||
{
|
{
|
||||||
printf("--------------------------------------------------------------------------\n");
|
printf("--------------------------------------------------------------------------\n");
|
||||||
printf("BootCommander version 1.04.01. Performs firmware updates on a micro-\n");
|
printf("BootCommander version 1.04.02. Performs firmware updates on a micro-\n");
|
||||||
printf("controller based system that runs the OpenBLT bootloader.\n\n");
|
printf("controller based system that runs the OpenBLT bootloader.\n\n");
|
||||||
printf("Copyright (c) 2017 by Feaser http://www.feaser.com\n");
|
printf("Copyright (c) 2017 by Feaser http://www.feaser.com\n");
|
||||||
printf("-------------------------------------------------------------------------\n");
|
printf("-------------------------------------------------------------------------\n");
|
||||||
|
|
|
@ -40,7 +40,7 @@ from setuptools import setup
|
||||||
# ***************************************************************************************
|
# ***************************************************************************************
|
||||||
setup ( \
|
setup ( \
|
||||||
name = 'openblt',
|
name = 'openblt',
|
||||||
version = '1.3.2',
|
version = '1.3.3',
|
||||||
description = 'Python wrapper for the OpenBLT host library (LibOpenBLT).',
|
description = 'Python wrapper for the OpenBLT host library (LibOpenBLT).',
|
||||||
long_description = open('README.rst', 'r').read(),
|
long_description = open('README.rst', 'r').read(),
|
||||||
author = 'Frank Voorburg',
|
author = 'Frank Voorburg',
|
||||||
|
|
|
@ -51,10 +51,10 @@
|
||||||
* for major-, minor-, and patch-version. Version 1.05.12 would for example be
|
* for major-, minor-, and patch-version. Version 1.05.12 would for example be
|
||||||
* 10512.
|
* 10512.
|
||||||
*/
|
*/
|
||||||
#define BLT_VERSION_NUMBER (10302u)
|
#define BLT_VERSION_NUMBER (10303u)
|
||||||
|
|
||||||
/** \brief The version number of the library as a null-terminated string. */
|
/** \brief The version number of the library as a null-terminated string. */
|
||||||
#define BLT_VERSION_STRING "1.03.02"
|
#define BLT_VERSION_STRING "1.03.03"
|
||||||
|
|
||||||
|
|
||||||
/****************************************************************************************
|
/****************************************************************************************
|
||||||
|
|
|
@ -48,7 +48,7 @@ uses
|
||||||
//***************************************************************************************
|
//***************************************************************************************
|
||||||
const
|
const
|
||||||
PROGRAM_NAME_STR = 'MicroBoot';
|
PROGRAM_NAME_STR = 'MicroBoot';
|
||||||
PROGRAM_VERSION_STR = 'v2.02';
|
PROGRAM_VERSION_STR = 'v2.03';
|
||||||
|
|
||||||
|
|
||||||
//***************************************************************************************
|
//***************************************************************************************
|
||||||
|
|
Binary file not shown.
Binary file not shown.
|
@ -34,7 +34,7 @@
|
||||||
/** \brief Main version number of the bootloader core. */
|
/** \brief Main version number of the bootloader core. */
|
||||||
#define BOOT_VERSION_CORE_MAIN (1u)
|
#define BOOT_VERSION_CORE_MAIN (1u)
|
||||||
/** \brief Minor version number of the bootloader core. */
|
/** \brief Minor version number of the bootloader core. */
|
||||||
#define BOOT_VERSION_CORE_MINOR (7u)
|
#define BOOT_VERSION_CORE_MINOR (8u)
|
||||||
/** \brief Patch number of the bootloader core. */
|
/** \brief Patch number of the bootloader core. */
|
||||||
#define BOOT_VERSION_CORE_PATCH (0u)
|
#define BOOT_VERSION_CORE_PATCH (0u)
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue