diff options
-rw-r--r-- | ChangeLog | 3 | ||||
-rw-r--r-- | include/features.h | 2 | ||||
-rw-r--r-- | version.h | 4 |
3 files changed, 6 insertions, 3 deletions
@@ -1,5 +1,8 @@ 2009-10-30 Ulrich Drepper <drepper@redhat.com> + * version.h (VERSION): Bump for 2.11 release. + * include/features.h (__GLIBC_MINOR__): Bump to 11. + * elf/tst-execstack.c (do_test): Add cast to avoid warning. * stdio-common/scanf13.c (main): Remove unused variable wbuf. diff --git a/include/features.h b/include/features.h index 120a242166..e46bb2b373 100644 --- a/include/features.h +++ b/include/features.h @@ -328,7 +328,7 @@ /* Major and minor version number of the GNU C library package. Use these macros to test for features in specific releases. */ #define __GLIBC__ 2 -#define __GLIBC_MINOR__ 10 +#define __GLIBC_MINOR__ 11 #define __GLIBC_PREREQ(maj, min) \ ((__GLIBC__ << 16) + __GLIBC_MINOR__ >= ((maj) << 16) + (min)) @@ -1,4 +1,4 @@ /* This file just defines the current version number of libc. */ -#define RELEASE "development" -#define VERSION "2.10.90" +#define RELEASE "stable" +#define VERSION "2.11" |