diff --git a/docs/Doxyfile b/docs/Doxyfile index 3c84bdb22..b06b185bd 100644 --- a/docs/Doxyfile +++ b/docs/Doxyfile @@ -31,7 +31,7 @@ PROJECT_NAME = ChibiOS/RT # This could be handy for archiving the generated documentation or # if some version control system is used. -PROJECT_NUMBER = 2.2.4 +PROJECT_NUMBER = 2.2.5 # The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) # base path where the generated documentation will be put. diff --git a/os/hal/platforms/STM32/hal_lld.c b/os/hal/platforms/STM32/hal_lld.c index aa62268d7..8590b1d9c 100644 --- a/os/hal/platforms/STM32/hal_lld.c +++ b/os/hal/platforms/STM32/hal_lld.c @@ -86,7 +86,7 @@ void hal_lld_init(void) { #if defined(STM32F10X_LD) || defined(STM32F10X_LD_VL) || \ defined(STM32F10X_MD) || defined(STM32F10X_MD_VL) || \ defined(STM32F10X_HD) || defined(STM32F10X_XL) || \ - defined(STM32F10X_CL) || defined(__DOXYGEN__) + defined(__DOXYGEN__) /* * Clocks initialization for the LD, MD and HD sub-families. */ diff --git a/os/kernel/include/ch.h b/os/kernel/include/ch.h index c836a968d..18afecd78 100644 --- a/os/kernel/include/ch.h +++ b/os/kernel/include/ch.h @@ -46,7 +46,7 @@ /** * @brief Kernel version string. */ -#define CH_KERNEL_VERSION "2.2.4" +#define CH_KERNEL_VERSION "2.2.5" /** * @brief Kernel version major number. @@ -61,7 +61,7 @@ /** * @brief Kernel version patch number. */ -#define CH_KERNEL_PATCH 4 +#define CH_KERNEL_PATCH 5 /* * Common values. diff --git a/readme.txt b/readme.txt index 9fda8f258..16aaec43c 100644 --- a/readme.txt +++ b/readme.txt @@ -68,6 +68,9 @@ *** Releases *** ***************************************************************************** +*** 2.2.5 *** +- FIX: Fixed STM32F107 demo build failure (bug 3294998). + *** 2.2.4 *** - FIX: Fixed CodeBlocks demo broken (bug 3304718). - FIX: Fixed race condition in output queues (bug 3303908).