Changed version numbers to 2.4.0 in order to start final testing.

git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@3812 35acf78f-673a-0410-8e92-d51de3d6d3f4
This commit is contained in:
gdisirio 2012-01-15 13:00:38 +00:00
parent e2448aac99
commit eb9622aa4a
5 changed files with 18 additions and 16 deletions

View File

@ -107,8 +107,12 @@ ASFLAGS = -Wa,-amhls=$(<:.s=.lst) $(ADEFS)
CPFLAGS = $(OPT) -Wall -Wextra -Wstrict-prototypes -fverbose-asm $(DEFS)
ifeq ($(HOST_OSX),yes)
OSX_SDK = /Developer/SDKs/MacOSX10.5.sdk
ifeq ($(OSX_SDK),)
OSX_SDK = /Developer/SDKs/MacOSX10.7.sdk
endif
ifeq ($(OSX_ARCH),)
OSX_ARCH = -mmacosx-version-min=10.3 -arch i386
endif
CPFLAGS += -isysroot $(OSX_SDK) $(OSX_ARCH)
LDFLAGS = -Wl -Map=$(PROJECT).map,-syslibroot,$(OSX_SDK),$(LIBDIR)

View File

@ -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.3.5
PROJECT_NUMBER = 2.4.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

View File

@ -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.3.5
PROJECT_NUMBER = 2.4.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

View File

@ -40,7 +40,7 @@
/**
* @brief Kernel version string.
*/
#define CH_KERNEL_VERSION "2.3.5unstable"
#define CH_KERNEL_VERSION "2.4.0"
/**
* @name Kernel version
@ -54,12 +54,12 @@
/**
* @brief Kernel version minor number.
*/
#define CH_KERNEL_MINOR 3
#define CH_KERNEL_MINOR 4
/**
* @brief Kernel version patch number.
*/
#define CH_KERNEL_PATCH 5
#define CH_KERNEL_PATCH 0
/** @} */
/*

View File

@ -6,8 +6,6 @@ X = In progress, some work done.
N = Decided against.
Current Pipeline (2.4.0):
X Revision of the RTCv1 driver implementation.
- Posix simulator tickets and test.
- Complete test cycle.
- Complete documentation cycle.