mirror of https://github.com/FOME-Tech/openblt.git
Refs #1652. Final changes before the next release.
git-svn-id: https://svn.code.sf.net/p/openblt/code/trunk@1010 5dc33758-31d5-4daf-9ae8-b24bf3d40d73
This commit is contained in:
parent
5ab0bfe6df
commit
6ab4c83ba7
|
@ -38,7 +38,7 @@ PROJECT_NAME = "BootCommander - Reference Manual"
|
|||
# could be handy for archiving the generated documentation or if some version
|
||||
# control system is used.
|
||||
|
||||
PROJECT_NUMBER = 1.4.3
|
||||
PROJECT_NUMBER = 1.4.4
|
||||
|
||||
# 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
|
||||
|
|
|
@ -38,7 +38,7 @@ PROJECT_NAME = "OpenBLT Host Library - Reference Manual"
|
|||
# could be handy for archiving the generated documentation or if some version
|
||||
# control system is used.
|
||||
|
||||
PROJECT_NUMBER = 1.3.7
|
||||
PROJECT_NUMBER = 1.3.8
|
||||
|
||||
# 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
|
||||
|
|
|
@ -38,7 +38,7 @@ PROJECT_NAME = "OpenBLT Bootloader - Reference Manual"
|
|||
# could be handy for archiving the generated documentation or if some version
|
||||
# control system is used.
|
||||
|
||||
PROJECT_NUMBER = 1.14.0
|
||||
PROJECT_NUMBER = 1.15.0
|
||||
|
||||
# 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
|
||||
|
|
Binary file not shown.
|
@ -472,7 +472,7 @@ int main(int argc, char const * const argv[])
|
|||
static void DisplayProgramInfo(void)
|
||||
{
|
||||
printf("--------------------------------------------------------------------------\n");
|
||||
printf("BootCommander version 1.04.03. Performs firmware updates on a micro-\n");
|
||||
printf("BootCommander version 1.04.04. Performs firmware updates on a micro-\n");
|
||||
printf("controller based system that runs the OpenBLT bootloader.\n\n");
|
||||
printf("Copyright (c) 2017 by Feaser http://www.feaser.com\n");
|
||||
printf("-------------------------------------------------------------------------\n");
|
||||
|
|
|
@ -40,7 +40,7 @@ from setuptools import setup
|
|||
# ***************************************************************************************
|
||||
setup ( \
|
||||
name = 'openblt',
|
||||
version = '1.3.7',
|
||||
version = '1.3.8',
|
||||
description = 'Python wrapper for the OpenBLT host library (LibOpenBLT).',
|
||||
long_description = open('README.rst', 'r').read(),
|
||||
author = 'Frank Voorburg',
|
||||
|
|
|
@ -51,10 +51,10 @@
|
|||
* for major-, minor-, and patch-version. Version 1.05.12 would for example be
|
||||
* 10512.
|
||||
*/
|
||||
#define BLT_VERSION_NUMBER (10307u)
|
||||
#define BLT_VERSION_NUMBER (10308u)
|
||||
|
||||
/** \brief The version number of the library as a null-terminated string. */
|
||||
#define BLT_VERSION_STRING "1.03.07"
|
||||
#define BLT_VERSION_STRING "1.03.08"
|
||||
|
||||
|
||||
/****************************************************************************************
|
||||
|
|
Binary file not shown.
Binary file not shown.
|
@ -34,7 +34,7 @@
|
|||
/** \brief Main version number of the bootloader core. */
|
||||
#define BOOT_VERSION_CORE_MAIN (1u)
|
||||
/** \brief Minor version number of the bootloader core. */
|
||||
#define BOOT_VERSION_CORE_MINOR (14u)
|
||||
#define BOOT_VERSION_CORE_MINOR (15u)
|
||||
/** \brief Patch number of the bootloader core. */
|
||||
#define BOOT_VERSION_CORE_PATCH (0u)
|
||||
|
||||
|
|
|
@ -28,7 +28,7 @@ https://www.feaser.com/openblt/doku.php?id=manual:design.
|
|||
----------------------------------------------------------------------------------------
|
||||
C O P Y R I G H T
|
||||
----------------------------------------------------------------------------------------
|
||||
Copyright (c) by Feaser 2011-2022 http://www.feaser.com All rights reserved
|
||||
Copyright (c) by Feaser 2011-2023 http://www.feaser.com All rights reserved
|
||||
|
||||
----------------------------------------------------------------------------------------
|
||||
L I C E N S E
|
||||
|
|
Loading…
Reference in New Issue