diff options
-rw-r--r-- | docs/Doxyfile | 2 | ||||
-rw-r--r-- | os/kernel/include/ch.h | 6 | ||||
-rw-r--r-- | readme.txt | 2 |
3 files changed, 6 insertions, 4 deletions
diff --git a/docs/Doxyfile b/docs/Doxyfile index 08f65b949..5617db620 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.1.8 +PROJECT_NUMBER = 2.3.0 # 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/kernel/include/ch.h b/os/kernel/include/ch.h index acbba14a2..3bd81e16b 100644 --- a/os/kernel/include/ch.h +++ b/os/kernel/include/ch.h @@ -39,7 +39,7 @@ /**
* @brief Kernel version string.
*/
-#define CH_KERNEL_VERSION "2.1.8unstable"
+#define CH_KERNEL_VERSION "2.3.0unstable"
/**
* @brief Kernel version major number.
@@ -49,12 +49,12 @@ /**
* @brief Kernel version minor number.
*/
-#define CH_KERNEL_MINOR 1
+#define CH_KERNEL_MINOR 3
/**
* @brief Kernel version patch number.
*/
-#define CH_KERNEL_PATCH 8
+#define CH_KERNEL_PATCH 0
/*
* Common values.
diff --git a/readme.txt b/readme.txt index 6ff76dc40..d6d3449f3 100644 --- a/readme.txt +++ b/readme.txt @@ -68,6 +68,8 @@ *** Releases ***
*****************************************************************************
+*** 2.3.0 ***
+
*** 2.1.8 ***
- FIX: Fixed error in STM32 ADC driver macro names (bug 3160306)(backported
to 2.0.11).
|